![]() | |
![]() |
| | Thread Tools | Search this Thread | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
hi experts, we have many data says millions of records to be displayed using ADO.net: Because there is so many data, the fill method retrieve all data into memory. It is not practical to display all. Can I make a "connected" dataset so that when scrolling to see data, it get from database directly instead of just memory copy of the data? In old recordset way, we can do so, but how can we do in ADO.net? Alternatively, we can use paging: Paging Through a Query Result |
#3
| |||
| |||
|
|
Hello alanwo (AT) gmail (DOT) com, If your can use forward only cursors the best solution for u is using DataReader instead of DataSet it improves your data carrying abt 20 times. In other case I'll use WebMethod ZipFilter to pack your dataSet and send it to client hi experts, we have many data says millions of records to be displayed using ADO.net: Because there is so many data, the fill method retrieve all data into memory. It is not practical to display all. Can I make a "connected" dataset so that when scrolling to see data, it get from database directly instead of just memory copy of the data? In old recordset way, we can do so, but how can we do in ADO.net? Alternatively, we can use paging: Paging Through a Query Result --- WBR, Michael Nemtsev :: blog: http://spaces.msn.com/members/laflour "At times one remains faithful to a cause only because its opponents do not cease to be insipid." (c) Friedrich Nietzsche |
#4
| |||
| |||
|
|
Thanks Mike, But the point is that we can't use DataReader for Windows Forms Datagrid but web forms only. We are developing Windows form application, so DataReader can't help. Alan Michael Nemtsev wrote: Hello alanwo (AT) gmail (DOT) com, If your can use forward only cursors the best solution for u is using DataReader instead of DataSet it improves your data carrying abt 20 times. In other case I'll use WebMethod ZipFilter to pack your dataSet and send it to client hi experts, we have many data says millions of records to be displayed using ADO.net: Because there is so many data, the fill method retrieve all data into |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
| |