| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239 |
- //
- // System.Data.OleDb.OleDbConnection
- //
- // Authors:
- // Rodrigo Moya ([email protected])
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Rodrigo Moya, 2002
- // Copyright (C) Tim Coleman, 2002
- //
- using System.ComponentModel;
- using System.Data;
- using System.Data.Common;
- namespace System.Data.OleDb
- {
- public sealed class OleDbConnection : Component, ICloneable, IDbConnection
- {
- #region Fields
- string connectionString;
- int connectionTimeout;
- OleDbDataReader dataReader;
- bool dataReaderOpen;
- IntPtr gdaConnection;
- #endregion
- #region Constructors
-
- public OleDbConnection ()
- {
- libgda.gda_init ("System.Data.OleDb", "1.0", 0, null);
- gdaConnection = IntPtr.Zero;
- connectionTimeout = 15;
- connectionString = null;
- }
- public OleDbConnection (string connectionString) : this ()
- {
- connectionString = connectionString;
- }
- #endregion // Constructors
- #region Properties
- public string ConnectionString {
- get {
- return connectionString;
- }
- set {
- connectionString = value;
- }
- }
- public int ConnectionTimeout {
- get {
- return connectionTimeout;
- }
- }
- public string Database {
- get {
- if (gdaConnection != IntPtr.Zero && libgda.gda_connection_is_open (gdaConnection)) {
- return libgda.gda_connection_get_database (gdaConnection);
- }
- return null;
- }
- }
- public string DataSource {
- [MonoTODO]
- get {
- throw new NotImplementedException ();
- }
- }
- public string Provider {
- get {
- if (gdaConnection != IntPtr.Zero && libgda.gda_connection_is_open (gdaConnection)) {
- return libgda.gda_connection_get_provider (gdaConnection);
- }
- return null;
- }
- }
- public string ServerVersion {
- [MonoTODO]
- get {
- throw new NotImplementedException ();
- }
- }
- public ConnectionState State
- {
- get {
- if (gdaConnection != IntPtr.Zero) {
- if (libgda.gda_connection_is_open (gdaConnection))
- return ConnectionState.Open;
- }
- return ConnectionState.Closed;
- }
- }
- internal IntPtr GdaConnection
- {
- get {
- return gdaConnection;
- }
- }
- #endregion // Properties
-
- #region Methods
-
- public OleDbTransaction BeginTransaction ()
- {
- if (gdaConnection != IntPtr.Zero)
- return new OleDbTransaction (this);
- return null;
- }
- IDbTransaction IDbConnection.BeginTransaction ()
- {
- return BeginTransaction ();
- }
-
- public OleDbTransaction BeginTransaction (IsolationLevel level)
- {
- if (gdaConnection != IntPtr.Zero)
- return new OleDbTransaction (this, level);
- return null;
- }
- IDbTransaction IDbConnection.BeginTransaction (IsolationLevel level)
- {
- return BeginTransaction (level);
- }
- public void ChangeDatabase (string name)
- {
- // FIXME: see http://bugzilla.gnome.org/show_bug.cgi?id=83315
- }
- public void Close ()
- {
- if (gdaConnection != IntPtr.Zero) {
- libgda.gda_connection_close (gdaConnection);
- gdaConnection = IntPtr.Zero;
- }
- }
- public OleDbCommand CreateCommand ()
- {
- if (gdaConnection != IntPtr.Zero && libgda.gda_connection_is_open (gdaConnection))
- return new OleDbCommand (null, this);
- return null;
- }
- [MonoTODO]
- protected override void Dispose (bool disposing)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public DataTable GetOleDbSchemaTable (Guid schema, object[] restrictions)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- object ICloneable.Clone ()
- {
- throw new NotImplementedException();
- }
- IDbCommand IDbConnection.CreateCommand ()
- {
- return CreateCommand ();
- }
- public void Open ()
- {
- if (gdaConnection != IntPtr.Zero ||
- libgda.gda_connection_is_open (gdaConnection))
- throw new InvalidOperationException ();
- gdaConnection = libgda.gda_client_open_connection (libgda.GdaClient,
- connectionString,
- "", "");
- }
- [MonoTODO]
- public static void ReleaseObjectPool ()
- {
- throw new NotImplementedException ();
- }
- #endregion
- #region Internal Methods
- // Used to prevent OleDbConnection
- // from doing anything while
- // OleDbDataReader is open.
- // Open the Reader. (called from OleDbCommand)
- internal void OpenReader (OleDbDataReader reader)
- {
- if(dataReaderOpen == true) {
- // TODO: throw exception here?
- // because a reader
- // is already open
- }
- else {
- dataReader = reader;
- dataReaderOpen = true;
- }
- }
- #endregion
- #region Events and Delegates
- public event OleDbInfoMessageEventHandler InfoMessage;
- public event StateChangeEventHandler StateChange;
- #endregion
- }
- }
|