ASP.NET Tutorial/ADO.net Database/Disconnected Data Access — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 11:56, 26 мая 2010
Using Disconnected Data Access
DataAdapter transfers data from the database to the in-memory database and back again.
DataTable represents an in-memory database table.
DataView represents an in-memory database view.
DataSet represents an in-memory database.
They are slower and use more resource intensive.
Retrieving 500 records with a DataReader is much faster than retrieving 500 records with a DataAdapter.