DbProviderFactory.cs 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. //
  2. // System.Data.Common.DbProviderFactory.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. using System.Security;
  12. using System.Security.Permissions;
  13. namespace System.Data.Common {
  14. public abstract class DbProviderFactory
  15. {
  16. #region Constructors
  17. [MonoTODO]
  18. protected DbProviderFactory (DbProviderSupportedClasses supportedClasses)
  19. {
  20. }
  21. #endregion // Constructors
  22. #region Properties
  23. [MonoTODO]
  24. public DbProviderSupportedClasses SupportedClasses {
  25. get { throw new NotImplementedException (); }
  26. }
  27. #endregion // Properties
  28. #region Methods
  29. [MonoTODO]
  30. public virtual DbCommand CreateCommand ()
  31. {
  32. throw new NotImplementedException ();
  33. }
  34. [MonoTODO]
  35. public virtual DbCommandBuilder CreateCommandBuilder ()
  36. {
  37. throw new NotImplementedException ();
  38. }
  39. [MonoTODO]
  40. protected virtual DbCommandSet CreateCommandSet ()
  41. {
  42. throw new NotImplementedException ();
  43. }
  44. [MonoTODO]
  45. public virtual DbConnection CreateConnection ()
  46. {
  47. throw new NotImplementedException ();
  48. }
  49. [MonoTODO]
  50. public virtual DbDataAdapter CreateDataAdapter ()
  51. {
  52. throw new NotImplementedException ();
  53. }
  54. [MonoTODO]
  55. public virtual DbDataSourceEnumerator CreateDataSourceEnumerator ()
  56. {
  57. throw new NotImplementedException ();
  58. }
  59. [MonoTODO]
  60. public virtual DbTable CreateDbTable ()
  61. {
  62. throw new NotImplementedException ();
  63. }
  64. [MonoTODO]
  65. public virtual DbParameter CreateParameter ()
  66. {
  67. throw new NotImplementedException ();
  68. }
  69. [MonoTODO]
  70. public virtual CodeAccessPermission CreatePermission (PermissionState state)
  71. {
  72. throw new NotImplementedException ();
  73. }
  74. #endregion // Methods
  75. }
  76. }
  77. #endif // NET_1_2