last year i mentioned that there are problems with
oracle 11 client and doa.
since nobody could give me an idea what to do i kept
using oracle 11 client.
today i found a curious workaround...
my environment:
1 main process with 3x toraclesession
2-10 threads each with toraclesession and one...
i tried it on 3 different pc already:
windows xp sp3, windows vista, windows server 2003
its absolute reproducable that the use of the ora 11
client makes the error, but the time from the start
of the app up to the exception can be a few seconds
or about 1 hour.
i suspect that it occurs when...
query execute exception block
just gives "External exception EBF00BAA" in the message.
exception block looks like this:
try
oq.execute;
on e : exception do
flog('...'+e.message);
end;
there is also an application.onexception
handler which is not triggered !
here are some oracleci parms...
:cry:
hello there,
i use delphi 2007 and doa 4.1
when my project runs under oracle 11 client it crashes
all doa concerning executes after a while with external exceptions.
under oracle 10.2 client everything is fine.
i tested it on windows xp and vista machine as client,
where server side is...
here is a sample tested in delphi 2005 or 2006:
vcl form with two tbuttons, toracledataset (ods), tdatasource (ds), toraclesession (os):
procedure TForm1.Button1Click(Sender: TObject);
begin
if ods.Active then ods.Close else ods.open;
{ the same with active true/false }
end;
procedure...
delphi 2005, doa 4.0.7.1, oracle 10.0.2.1 db/client
i use a TOracleDataSet with TDataSource, about 30 Fields and 50 rows per refresh.
any time i do a Toracledataset.refresh and i do almost every second my process memory increases 16KB. this results in an out of memory case after a couple hours...