ASP.NET Tutorial/ADO.net Database/Disconnected Data Access — различия между версиями

Материал из .Net Framework эксперт
Перейти к: навигация, поиск
м (1 версия)
 
м (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.