DataAdapter

  • Thread starter Thread starter Dragon
  • Start date Start date
D

Dragon

What is the actual use of DataAdapter ?
is it Only for sync for Dataset(Disconnected Data) and Table in Database for
only Single Table only ???
 
DataAdapter is a bridge between DataSet and your data source. Take into
account that DataSet can contain several tables and relations between them.
The idea of DataAdapter to help you with retriving and updating *TABLES*,
their relations in/out DataSet.
 
Hello,

A DataAdapter is an example of an Adapter - pattern. All it does is
converting one 'class' into another one. In the case of DataAdapters it
converts the data from the database into classes.

You should check the msdn docs for the exact funtionality of the
DataAdapter in .NET.

Greetz
 
Back
Top