I wish a nice day to all
For viewing certain records in large table (more then 400 000, more then 30MB on disk) I use SQL, because it is quick and the filtering can be constructed easily and even from code.
Problem occurs when some records need to be edited.
To move the record pointer to the matching record in original table I'm using LOCATE FOR firstfield=... ...,lastfield=..., which seems to be too clumsy here.
Is there a better way? (neither UPDATE nor SEEK is suitable in my case)
Thank you
Tom
For viewing certain records in large table (more then 400 000, more then 30MB on disk) I use SQL, because it is quick and the filtering can be constructed easily and even from code.
Problem occurs when some records need to be edited.
To move the record pointer to the matching record in original table I'm using LOCATE FOR firstfield=... ...,lastfield=..., which seems to be too clumsy here.
Is there a better way? (neither UPDATE nor SEEK is suitable in my case)
Thank you
Tom