| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- //
- // System.Data.ProviderBase.DbConnectionFactory
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2003
- //
- #if NET_1_2
- using System.Data.Common;
- namespace System.Data.ProviderBase {
- public abstract class DbConnectionFactory
- {
- #region Fields
-
- #endregion // Fields
- #region Constructors
- [MonoTODO]
- protected DbConnectionFactory ()
- {
- }
- [MonoTODO]
- protected DbConnectionFactory (DbConnectionPoolCounters performanceCounters)
- {
- }
-
- #endregion // Constructors
- #region Properties
- public abstract DbProviderFactory ProviderFactory { get; }
- #endregion // Properties
- #region Methods
- [MonoTODO]
- protected virtual IAsyncResult BeginCreateConnection (DbConnectionBase owningObject, DbConnectionString connectionOptions, DbConnectionInternal connection, AsyncCallback callback, object asyncStateObject)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void ClearAllPools ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void ClearPool (DbConnectionBase connection)
- {
- throw new NotImplementedException ();
- }
- protected abstract DbConnectionInternal CreateConnection (DbConnectionString options, DbConnectionBase owningObject);
- protected abstract DbConnectionString CreateConnectionOptions (string connectionString);
- protected abstract DbConnectionPoolOptions CreateConnectionPoolOptions (DbConnectionString options);
- [MonoTODO]
- protected virtual DbMetaDataFactory CreateMetaDataFactory (DbConnectionInternal internalConnection)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected virtual DbConnectionInternal EndCreateConnection (IAsyncResult asyncResult)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected internal DbMetaDataFactory GetMetaDataFactory (DbConnectionString connectionOptions, DbConnectionInternal internalConnection)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void SetConnectionPoolOptions (string connectionString, DbConnectionPoolOptions poolOptions)
- {
- throw new NotImplementedException ();
- }
- #endregion // Methods
- }
- }
- #endif
|