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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top