Additional
dbCAP
AnyDAC
ThinDAC
NCOCI8
Topic: strange Issue with TADQuery bof and Eof properties
strange Issue with TADQuery bof and Eof properties
Posted: 2007/10/17 08:17
 
Hello,
I have a very strange issue using Anydac v1 on an oracle database
On a TADQuery I have the properties EOF and BOF True at the same time.
I can't understand how it is possible ...
ex :

MyQuery.open;
//MyQuery.bof => true //Ok
//MyQuery.eof => false //OK
MyQuery.fetchAll;
//MyQuery.bof => true //NOT OK
//MyQuery.eof => true //OK

Is there a explanation or is this a bug, ?

Thanks
Regards,
Michael
Re:strange Issue with TADQuery bof and Eof propert
Posted: 2007/10/17 08:40
 
Ok,
I found out on my own My query was unidirectionnal....

Sorry for disturbing ...
Re:strange Issue with TADQuery bof and Eof propert
Posted: 2007/10/17 08:44
 
Ok