I'm trying to carry out some searches of what will be a very large database and some of the searches could return huge recordsets. I want to display the results in pages of 10 or so records. Rather than download a huge recordset and then step through in ten records at a time I would like my SQL to take the strain.
The only way I have found is to use something like:
objRS.MaxRecords 10
but it never works for me. Is there anyway of building it into the SQL query string?
Bob..
The only way I have found is to use something like:
objRS.MaxRecords 10
but it never works for me. Is there anyway of building it into the SQL query string?
Bob..