CHAPTER 21 ADO.NET PART I: THE CONNECTED LAYER
The Role of the IDbDataAdapter and IDataAdapter Interfaces
You use data adapters to push and pull DataSets to and from a given data store. The IDbDataAdapter
interface defines the following set of properties that you can use to maintain the SQL statements for the
related select, insert, update, and delete operations:
public interface IDbDataAdapter :
{
IDbCommand DeleteCommand { get;
IDbCommand InsertCommand { get;
IDbCommand SelectCommand { get;
IDbCommand UpdateComma