Hi Thys,
I'm not aware of any SQL Stored procedures, but paging in general (for a NetWebBrowse) is complicated.
It's made more complicated by the fact that in the web (Browse or service methods) it spans multiple threads -
it's not like an ABC browse which all works on a single thread.
Obviously there is a paging system built-in for the Browse template, and that works well. Presumably that could be extended to work with Service Methods as well.
But I'm not sure if that's the correct approach.
If you have a date/time stamp on your rows, then it's possible to filter based on that. For example, say the server is only set up to deliver 100 records at a time. Then I get the first 100 records. I look at the last record (time stamp) and ask for the next 100 after that, and so on.
You could do this with any key, it doesn't have to be a timestamp, but hopefully you get the idea?
cheers
Bruce