I want to format the output of a database query in a 2-columns table, that is:
Record1 Record5
Record2 Record6
Record3 Record7
Record4 Record8
Looking to some articles in 4Guys and 101Asp they show some techniques like GetStrings and GetRows but they aren't useful because they get all the records of the database and I'm trying to do a paged search, and those methods don't admit properties like AbsolutePage (if I'm not wrong).
I will always be able to use RecordSet.Move onwards and backwards to write the needed record but this is quite unefficient all time moving the cursor.
Is it possible to make this?
Thanks.
Record1 Record5
Record2 Record6
Record3 Record7
Record4 Record8
Looking to some articles in 4Guys and 101Asp they show some techniques like GetStrings and GetRows but they aren't useful because they get all the records of the database and I'm trying to do a paged search, and those methods don't admit properties like AbsolutePage (if I'm not wrong).
I will always be able to use RecordSet.Move onwards and backwards to write the needed record but this is quite unefficient all time moving the cursor.
Is it possible to make this?
Thanks.