2010-07-23 Veerapuram Varadhan <v.varadhan@gmail.com>
[mono.git] / mcs / class / System.Data / System.Data / TableAdapterSchemaInfo.cs
1 //
2 // TableAdapterSchemaInfo.cs
3 //
4 // Author:
5 //      Veerapuram Varadhan (vvaradhan@novell.com)
6 //
7 // Copyright (C) 2009 Novell, Inc.
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 #if NET_2_0
32 using System;
33 using System.Collections;
34 using System.Data;
35 using System.Data.Common;
36
37 namespace System.Data
38 {
39         internal enum GenerateMethodsType {
40                 None,
41                 Get,
42                 Fill,
43                 Both
44         }
45         
46         internal enum QueryType {
47                 NoData,
48                 Rowset,
49                 Scalar
50         }
51         
52         internal class DbSourceMethodInfo
53         {
54                 public GenerateMethodsType MethodType;
55                 public string Name;
56                 public string Modifier;
57                 public string QueryType;
58                 public string ScalarCallRetval;
59         }
60         
61         internal class DbCommandInfo
62         {
63                 public DbCommand Command;
64                 public DbSourceMethodInfo[] Methods;
65         }
66         
67         internal class TableAdapterSchemaInfo
68         {
69                 public TableAdapterSchemaInfo (DbProviderFactory provider) {
70                         this.Provider = provider;
71                         this.Adapter = provider.CreateDataAdapter ();
72                         this.Connection = provider.CreateConnection ();
73                         this.Commands = new ArrayList ();
74                         this.ShortCommands = false;
75                 }
76                 
77                 public TableAdapterSchemaInfo ()
78                 {
79                         this.Commands = new ArrayList ();
80                         this.ShortCommands = false;
81                 }
82
83                 public DbProviderFactory Provider;
84                 public DbDataAdapter Adapter;
85                 public DbConnection Connection;
86                 public string ConnectionString;
87                 public string BaseClass;
88                 public string Name;
89                 public bool ShortCommands;
90                 // List of DbCommandInfo objects
91                 public ArrayList Commands;
92         }
93 }
94 #endif