I have a database with ~50000 rows and 16 columns(at least for now). When a button is pressed in the main form of the application, the program makes some calculations from which a result is computed. I need to position the current record of the table as the computed result.
example: i have the result 35500. I need to set the position to the record number 35500 in the table. How can I accomplish that in a fast way? I work with ADO (no SQL) and I've tried with instructions like
table.First;
table.MoveBy(35500);
but they are very slow for this case. I also have to mention that the positioning is done without any output in any component like TDBGrid or anything else, so it has to be a faster way