* OdbcParameterTest.cs: Fixed compilation on 1.0 profile.
[mono.git] / mcs / class / System.Data / System.Data.ProviderBase / DbConnectionBase.cs
index cb3e83afcf3f666f6be3ec4060b33b19009a1334..d4788f1ac950cfb99b5155b635bbc40f3e92c22f 100644 (file)
@@ -31,7 +31,7 @@
 //
 
 #if NET_2_0
-
+using System.Transactions;
 using System.Data.Common;
 using System.EnterpriseServices;
 
@@ -43,6 +43,7 @@ namespace System.Data.ProviderBase {
                DbConnectionFactory connectionFactory;
                DbConnectionString connectionOptions;
                string connectionString;
+                bool disposed = false;
                
                #endregion // Fields
 
@@ -57,6 +58,11 @@ namespace System.Data.ProviderBase {
                {
                        this.connectionFactory = connectionFactory;
                }
+
+                protected DbConnectionBase ()
+                {
+                        
+                }
                
                #endregion // Constructors
 
@@ -75,11 +81,10 @@ namespace System.Data.ProviderBase {
                        get { return connectionOptions; }
                }
 
-               [MonoTODO]
                public override string ConnectionString {
                        get { return connectionString; }
                        set { 
-                               connectionOptions = ConnectionFactory.CreateConnectionOptionsInternal (value);
+                               //connectionOptions = ConnectionFactory.CreateConnectionOptionsInternal (value);
                                connectionString = value;
                        }
                }
@@ -149,31 +154,47 @@ namespace System.Data.ProviderBase {
 
                protected override DbCommand CreateDbCommand ()
                {
-                       return (DbCommand) ConnectionFactory.ProviderFactory.CreateCommand ();
+                       DbCommand cmd = (DbCommand) ConnectionFactory.ProviderFactory.CreateCommand ();
+                        cmd.Connection = this;
+                        return cmd;
                }
 
-               [MonoTODO]
                protected override void Dispose (bool disposing)
                {
-                       throw new NotImplementedException ();
+                        if (!disposed) { 
+                                try {
+                                        if (disposing) {
+                                                // do necessary clean up
+                                        }
+                                        disposed = true;
+                                } finally {
+                                        base.Dispose (disposing);
+                                }
+                       }
                }
 
                [MonoTODO]
-               public override void EnlistDistributedTransaction (ITransaction transaction)
+               public void EnlistDistributedTransaction (EnterpriseServices.ITransaction transaction)
                {
                        throw new NotImplementedException ();
                }
 
+                [MonoTODO]
+                public void EnlistTransaction (Transaction transaction)
+                {
+                       throw new NotImplementedException ();                        
+                }
+
                [MonoTODO]
                protected virtual DbMetaDataFactory GetMetaDataFactory (DbConnectionInternal internalConnection)
                {
                        throw new NotImplementedException ();
                }
 
-               [MonoTODO]
                protected void OnStateChange (ConnectionState originalState, ConnectionState currentState)
                {
-                       throw new NotImplementedException ();
+                        if (StateChange != null)
+                                StateChange (this, new StateChangeEventArgs (originalState, currentState));
                }
 
                [MonoTODO]
@@ -182,6 +203,24 @@ namespace System.Data.ProviderBase {
                        throw new NotImplementedException ();
                }
 
+               [MonoTODO]
+               public override DataTable GetSchema ()
+               {
+                       throw new NotImplementedException ();
+               }
+
+               [MonoTODO]
+               public override DataTable GetSchema (string collectionName)
+               {
+                       throw new NotImplementedException ();
+               }
+
+               [MonoTODO]
+               public override DataTable GetSchema (string collectionName, string [] restrictionValues)
+               {
+                       throw new NotImplementedException ();
+               }
+
                #endregion // Methods
        }
 }