FetchAll-Problem!?
Posted: Tue 19 Apr 2011 09:29
Hello,
when I get some data from a table with
I've got as result RecordCount=25. But the Table contains 45 entries.
But when i Use
I've got the correct count of entries? What's going wrong?
Why didn't get 'FetchAll' all entries?
Michael
when I get some data from a table with
Code: Select all
IBCQuery.SQL.Text:=('select * from users where kontosperre1 order by namenskuerzel');
IBCQuery.open;
IBCQuery.FetchAll;
IBCQuery.First;But when i Use
Code: Select all
DM.Q_Tmp.Last; //IBDAC
DM.Q_Tmp.First;Why didn't get 'FetchAll' all entries?
Michael