|
From: Dr B. M. <ti...@li...> - 2001-10-30 06:42:36
|
Hi,
I Hope have little problem.
Environment:=20
Delphi 5 updated to latest service pack
I just downloaded Firebird ODBC Driver, installed configured and basic =
tested. All seems OK!
When I try to do this:
..
( Setting up Database Component with Firebird ODBC Link OK and Testing =
Connection )=20
..
..
Query1.Close();
Query1.SQL.Clear();
Query1.SQL.Append( 'SELECT * FROM myDB;' );
Query1.Open();
while not Query1.eof do
begin
Query2.Close();
Query2.SQL.Clear();
Query2.SQL.Append( 'SELECT * FROM myADDRESS;' );
Query2.Open();
Query2.Next();
Query1.Next(); --> During Execution raise an Extenal Exception =
E06D7363
end;
Query1.Close();
Query2.Close();
There is no problem if using two different Session Component in order to =
control queries.
This Method use two different connection but it is incorrect!
Is a BUG????
Thanks in advice!
Massimo Belloni
|