F
Fabio
What is faster to use in a DataGrid???
DataView, Dataset or DataTable
Thanks in advance,
Fabio Augusto
DataView, Dataset or DataTable
Thanks in advance,
Fabio Augusto
Jay B. Harlow said:Fabio,
In addition to CJ's comments.
The DataGrid only binds to the DataView (to display values), so I would
think it will be the fastest.
Remember you do not bind to a DataSet you bind to a member of the DataSet,
this member is a DataTable.
I did go on to state that ;-)Did some research on this, actually, it binds to the DefaultView object in a
DataTable... which is an object of type System.Data.DataView... =) So no
matter what, you use a Dataview.
Jay B. Harlow said:CJ, in
I did go on to state that ;-)
But its good to reiterate it sometimes!
Jay
in length