J
Jeff Haumesser
Good Morning:
Oracle has a feature on a form that allows the user to Page through
large Recordsets at certain number of records at a time in a list or grid.
For instance, when the user wants to view ALL the records of a table or
view, the first chunk is Immediately displayed. As the user scrolls down or
pages down, the next chunks are displayed accordingly. Therefore, the
records are displayed almost instantaneasly, but only chunks at a time. It
doesn't have to wait for ALL the records to load into memory before
displaying them.
I would like to do essentilaly the same in VB .NET. I have a listbox or
datagrid. The user, at times, would like to browse all the records of a
table or query that will ultimately result in 70,000+ records. However, the
time to load these records is horrendous due to a narrow bandwidth
connection of some locations.
I am currently using a Stored Procedure to load these records into a
Dataset then setting the List Datasource to that Dataset table.
Does anyone have any ideas that would work along these lines?
Thankyou in advance,
Jeff
Oracle has a feature on a form that allows the user to Page through
large Recordsets at certain number of records at a time in a list or grid.
For instance, when the user wants to view ALL the records of a table or
view, the first chunk is Immediately displayed. As the user scrolls down or
pages down, the next chunks are displayed accordingly. Therefore, the
records are displayed almost instantaneasly, but only chunks at a time. It
doesn't have to wait for ALL the records to load into memory before
displaying them.
I would like to do essentilaly the same in VB .NET. I have a listbox or
datagrid. The user, at times, would like to browse all the records of a
table or query that will ultimately result in 70,000+ records. However, the
time to load these records is horrendous due to a narrow bandwidth
connection of some locations.
I am currently using a Stored Procedure to load these records into a
Dataset then setting the List Datasource to that Dataset table.
Does anyone have any ideas that would work along these lines?
Thankyou in advance,
Jeff