DbProviderFactories.cs 703 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // System.Data.Common.DbProviderFactories.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2003
  8. //
  9. #if NET_1_2
  10. using System.Collections;
  11. namespace System.Data.Common {
  12. public sealed class DbProviderFactories
  13. {
  14. #region Methods
  15. [MonoTODO]
  16. public static DbProviderFactory GetFactory (DataRow providerRow)
  17. {
  18. throw new NotImplementedException ();
  19. }
  20. [MonoTODO]
  21. public static DbProviderFactory GetFactory (string providerInvariantName)
  22. {
  23. throw new NotImplementedException ();
  24. }
  25. [MonoTODO]
  26. public static DataTable GetFactoryClasses ()
  27. {
  28. throw new NotImplementedException ();
  29. }
  30. #endregion // Methods
  31. }
  32. }
  33. #endif // NET_1_2