Max Process reached

Discussion of open issues, suggestions and bugs regarding ODAC (Oracle Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
jamany

Max Process reached

Post by jamany » Mon 20 Dec 2004 11:14

ODAC Version : 4.15.1.14

Dynamic TOraSession Create, Below That code....

function MySessionOpen( var MySession : TOraSession ) : TOraSession ;
begin

MySession := TOraSession.Create(nil);
MySession.ConnectString := ConnectStr ;
MySession.Options.Net := True ;
MySession.Connected := True ;

Result := MySession ;
end ;

procedure MySessionClose( var MySession : TOraSession ) ;
begin
MySession.Connected := False;
MySession.Free ;
end;

I have a quest, Why don't release Oracle session... Still alive session in not active....

Paul
Posts: 725
Joined: Thu 28 Oct 2004 14:06

Post by Paul » Mon 20 Dec 2004 15:47

How did you determine that session is alive and how can we see that?
What error message have you received?
Please try the last version of ODAC 4.50.

Post Reply