2004-03-15 Umadevi S (sumadevi@novell.com)
[mono.git] / mcs / class / System.Data / System.Data / IDbDataAdapter.cs
1 //
2 // System.Data.IDbDataAdapter.cs
3 //
4 // Author:
5 //   Christopher Podurgiel (cpodurgiel@msn.com)
6 //
7 // (C) Chris Podurgiel
8 //
9
10 namespace System.Data
11 {
12         /// <summary>
13         /// Represents a set of command-related properties that are used to fill the DataSet and update a data source, and is implemented by .NET data providers that access relational databases.
14         /// </summary>
15         public interface IDbDataAdapter : IDataAdapter
16         {
17                 IDbCommand DeleteCommand{get; set;}
18
19                 IDbCommand InsertCommand{get; set;}
20
21                 IDbCommand SelectCommand{get; set;}
22
23                 IDbCommand UpdateCommand{get; set;}
24         }
25 }