2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / System.Data / System.Data.ProviderBase / DbConnectionBase.cs
1 //
2 // System.Data.ProviderBase.DbConnectionBase
3 //
4 // Author:
5 //   Tim Coleman (tim@timcoleman.com)
6 //
7 // Copyright (C) Tim Coleman, 2003
8 //
9
10 //
11 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
12 //
13 // Permission is hereby granted, free of charge, to any person obtaining
14 // a copy of this software and associated documentation files (the
15 // "Software"), to deal in the Software without restriction, including
16 // without limitation the rights to use, copy, modify, merge, publish,
17 // distribute, sublicense, and/or sell copies of the Software, and to
18 // permit persons to whom the Software is furnished to do so, subject to
19 // the following conditions:
20 // 
21 // The above copyright notice and this permission notice shall be
22 // included in all copies or substantial portions of the Software.
23 // 
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 //
32
33 #if NET_2_0
34
35 using System.Data.Common;
36 using System.EnterpriseServices;
37
38 namespace System.Data.ProviderBase {
39         public abstract class DbConnectionBase : DbConnection
40         {
41                 #region Fields
42
43                 DbConnectionFactory connectionFactory;
44                 DbConnectionString connectionOptions;
45                 string connectionString;
46                 
47                 #endregion // Fields
48
49                 #region Constructors
50
51                 protected DbConnectionBase (DbConnectionBase connection)
52                         : this (connection.ConnectionFactory)
53                 {
54                 }
55
56                 protected DbConnectionBase (DbConnectionFactory connectionFactory)
57                 {
58                         this.connectionFactory = connectionFactory;
59                 }
60
61                 protected DbConnectionBase ()
62                 {
63                         
64                 }
65                 
66                 #endregion // Constructors
67
68                 #region Properties
69
70                 [MonoTODO]
71                 protected int CloseCount {
72                         get { throw new NotImplementedException (); }
73                 }
74
75                 protected internal DbConnectionFactory ConnectionFactory {
76                         get { return connectionFactory; }
77                 }
78
79                 protected internal DbConnectionString ConnectionOptions {
80                         get { return connectionOptions; }
81                 }
82
83                 [MonoTODO]
84                 public override string ConnectionString {
85                         get { return connectionString; }
86                         set { 
87                                 connectionOptions = ConnectionFactory.CreateConnectionOptionsInternal (value);
88                                 connectionString = value;
89                         }
90                 }
91
92                 [MonoTODO]
93                 public override int ConnectionTimeout {
94                         get { throw new NotImplementedException (); }
95                 }
96
97                 [MonoTODO]
98                 protected virtual int ConnectionTimeoutInternal {
99                         get { throw new NotImplementedException (); }
100                 }
101
102                 [MonoTODO]
103                 public override string Database {
104                         get { throw new NotImplementedException (); }
105                 }
106
107                 [MonoTODO]
108                 public override string DataSource {
109                         get { throw new NotImplementedException (); }
110                 }
111
112                 [MonoTODO]
113                 protected internal DbConnectionInternal InnerConnection {
114                         get { throw new NotImplementedException (); }
115                 }
116
117                 [MonoTODO]
118                 public override string ServerVersion {
119                         get { throw new NotImplementedException (); }
120                 }
121
122                 [MonoTODO]
123                 public override ConnectionState State {
124                         get { throw new NotImplementedException (); }
125                 }
126
127                 #endregion // Properties
128
129                 #region Events
130
131                 public event StateChangeEventHandler StateChange;
132
133                 #endregion // Events
134
135                 #region Methods
136
137                 [MonoTODO]
138                 protected override DbTransaction BeginDbTransaction (IsolationLevel isolationLevel)
139                 {
140                         throw new NotImplementedException ();
141                 }
142
143                 [MonoTODO]
144                 public override void ChangeDatabase (string value)
145                 {
146                         throw new NotImplementedException ();
147                 }
148
149                 [MonoTODO]
150                 public override void Close ()
151                 {
152                         throw new NotImplementedException ();
153                 }
154
155                 protected override DbCommand CreateDbCommand ()
156                 {
157                         return (DbCommand) ConnectionFactory.ProviderFactory.CreateCommand ();
158                 }
159
160                 [MonoTODO]
161                 protected override void Dispose (bool disposing)
162                 {
163                         throw new NotImplementedException ();
164                 }
165
166                 [MonoTODO]
167                 public override void EnlistDistributedTransaction (ITransaction transaction)
168                 {
169                         throw new NotImplementedException ();
170                 }
171
172                 [MonoTODO]
173                 public override void EnlistTransaction (ITransaction transaction)
174                 {
175                         throw new NotImplementedException ();                        
176                 }
177
178                 [MonoTODO]
179                 protected virtual DbMetaDataFactory GetMetaDataFactory (DbConnectionInternal internalConnection)
180                 {
181                         throw new NotImplementedException ();
182                 }
183
184                 [MonoTODO]
185                 protected void OnStateChange (ConnectionState originalState, ConnectionState currentState)
186                 {
187                         throw new NotImplementedException ();
188                 }
189
190                 [MonoTODO]
191                 public override void Open ()
192                 {
193                         throw new NotImplementedException ();
194                 }
195
196                 [MonoTODO]
197                 public override DataTable GetSchema ()
198                 {
199                         throw new NotImplementedException ();
200                 }
201
202                 [MonoTODO]
203                 public override DataTable GetSchema (string collectionName)
204                 {
205                         throw new NotImplementedException ();
206                 }
207
208                 [MonoTODO]
209                 public override DataTable GetSchema (string collectionName, string [] restrictionValues)
210                 {
211                         throw new NotImplementedException ();
212                 }
213
214                 #endregion // Methods
215         }
216 }
217
218 #endif