ASP.NET Tutorial/ADO.net Database/Disconnected Data Access

Материал из .Net Framework эксперт
Версия от 14:56, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Using Disconnected Data Access

   <source lang="csharp">

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.</source>