I am using 6.6.2 with Delphi-5, sqlite3.
Ztable.First;
while not ZTable.Eof do
begin
...
ZTable.Next;
end;
In the course of ... the current record might get edited. This messes up the cursor position and Eof never happens. It seems to bounce back and forth between the first and second record if the first record gets edited.
Any ideas?
Thanks,
Ed
ZTable Problem
Moderators: gto, cipto_kh, EgonHugeist
- mdaems
- Zeos Project Manager
- Posts: 2766
- Joined: 20.09.2005, 15:28
- Location: Brussels, Belgium
- Contact:
Hi Ed, can you drop an easy test project (= form with 1 button or even easier command line app) together with your db creation script and test data in the bug tracker? Eventually you can also leave a copy (or a link) here.
(I still have a D5 compiler somewhere so I might try it myself if I get the SQLite working)
Mark
(I still have a D5 compiler somewhere so I might try it myself if I get the SQLite working)
Mark
-
- Fresh Boarder
- Posts: 6
- Joined: 06.12.2006, 20:59