| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //
- // System.Data.Common.DbProviderFactories.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2003
- //
- #if NET_1_2
- using System.Collections;
- namespace System.Data.Common {
- public sealed class DbProviderFactories
- {
- #region Methods
- [MonoTODO]
- public static DbProviderFactory GetFactory (DataRow providerRow)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static DbProviderFactory GetFactory (string providerInvariantName)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static DataTable GetFactoryClasses ()
- {
- throw new NotImplementedException ();
- }
- #endregion // Methods
- }
- }
- #endif // NET_1_2
|