2001-10-12 Ravi Pratap <ravi@ximian.com>
[mono.git] / mcs / class / 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
18                 IDbCommand DeleteCommand
19                 {
20                         get
21                         {
22                         }
23                         set
24                         {
25                         }
26                 }
27
28                 IDbCommand InsertCommand
29                 {
30                         get
31                         {
32                         }
33                         set
34                         {
35                         }
36                 }
37
38                 IDbCommand SelectCommand
39                 {
40                         get
41                         {
42                         }
43                         set
44                         {
45                         }
46                 }
47
48                 IDbCommand UpdateCommand
49                 {
50                         get
51                         {
52                         }
53                         set
54                         {
55                         }
56                 }
57
58                 
59
60         }
61 }