In this chapter we took a close look at the DataAdapter, which is a principal ADO.NET object. The DataAdapter is the bridge between the disconnected world of the DataSet and its associated objects and the connected world of the .NET Data Provider objects that actually connect and communicate with a physical data source. The DataAdapter is used to fill a DataSet with data from a data source, using either explicit commands or stored procedures. The DataAdapter also provides automatic updating to the data source of the changes made to the DataSet, while also allowing for complete customization of the commands to be used for the Insert, Update, and Delete operations against the data source. Questions and Answers
|