Hi,
I'm coding a custom search engine, and I want to use recordset paging. In order to be able to search with multiple key words, I'm using a FOR loop to iterate thru an array which contains the key words. Each time, I write a SQL query with one word and write the results out to the page. This works great, until I try to page thru the results. All examples of paging I've seen work with one recordset, I'm working with many (as many as I have keys words).
I was thinking of sending each recordset to a single recordset (appending as I go along, instead of writing to the page) so that I get a single recodset that contains all my recodsets, so that I could page thru this one recodset. How is this done?
Any other suggestions as how I could do this would be welcomed and appreciated.
Thanks.
I'm coding a custom search engine, and I want to use recordset paging. In order to be able to search with multiple key words, I'm using a FOR loop to iterate thru an array which contains the key words. Each time, I write a SQL query with one word and write the results out to the page. This works great, until I try to page thru the results. All examples of paging I've seen work with one recordset, I'm working with many (as many as I have keys words).
I was thinking of sending each recordset to a single recordset (appending as I go along, instead of writing to the page) so that I get a single recodset that contains all my recodsets, so that I could page thru this one recodset. How is this done?
Any other suggestions as how I could do this would be welcomed and appreciated.
Thanks.