VirtualMode for DataGrid

  • Thread starter Thread starter arjunsingri
  • Start date Start date
NETCF's grid works this way already. In fact, fetching data for visible rows
only is the only way it functions.

So go ahead and implement data source which only retrieves what DataGrid
asks for.

If you're using SQL Mobile, SqlCeResultSet class does that already.



I would not recommend it for SQL Client because you need to maintain open
connection at all times which is bad for SQL Server performance.

Also, connection might go out for mobile devices and your application would
stop working if that happens.

--
Best regards,

Ilya

This posting is provided "AS IS" with no warranties, and confers no rights.

*** Want to find answers instantly? Here's how... ***

1. Go to
http://groups-beta.google.com/group/microsoft.public.dotnet.framework.compactframework?hl=en
2. Type your question in the text box near "Search this group" button.
3. Hit "Search this group" button.
4. Read answer(s).
 
Back
Top