ChangeLog 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. 2006-05-31 Gert Driesen <[email protected]>
  2. * OleDbErrorCollection.cs: Removed explicit interface implementation
  3. of IEnumerable.GetEnumerator ().
  4. * OleDbParameterCollection.cs: Removed explicit interface
  5. implementation members that are already implementation by public
  6. members.
  7. 2006-02-17 Chris Toshok <[email protected]>
  8. * OleDbDataAdapter.cs, OleDbCommand.cs, OleDbParameter.cs,
  9. OleDbCommandBuilder.cs, OleDbConnection.cs: remove
  10. DataSysDescriptions for >= 2.0.
  11. 2006-02-17 Chris Toshok <[email protected]>
  12. * OleDbCommand.cs: remove extra using System.Data. fixes warning.
  13. 2005-10-04 Sebastien Pouliot <[email protected]>
  14. * OleDbDataReader.cs: Added a call to GC.SuppressFinalize in Dispose
  15. method (and avoids calling the destructor if the object was disposed).
  16. * OleDbTransaction.cs: Added a call to GC.SuppressFinalize in Dispose
  17. method (even if we throw an NotImplementedException afterward). This
  18. will remove warnings from gendarme.
  19. 2005-09-20 Alexandre Miguel Pedro Gomes <[email protected]>
  20. * OleDbConnection.cs: Verify and throw an exception if the
  21. connection isn't valid.
  22. 2005-09-13 Sureshkumar T <[email protected]>
  23. * Moved TestGda.cs & TestOleDb.cs to ..\Test.
  24. 2005-08-08 Gert Driesen <[email protected]>
  25. * OleDbDataAdapter.cs: Fixed custom attributes to match MS.NET.
  26. * OleDbCommand.cs: Fixed custom attributes to match MS.NET.
  27. * OleDbParameter.cs: Fixed custom attribute to match MS.NET.
  28. * OleDbException.cs: Added ErrorTypeConverter, assigned to ErrorCode
  29. property to match MS.NET.
  30. * OleDbConnection.cs: Fixed custom attributes to match MS.NET.
  31. 2005-02-16 Lluis Sanchez Gual <[email protected]>
  32. * OleDbCommand.cs: Make it inherit from the correct base class in 2.0,
  33. and added stubs for some interface methods.
  34. 2004-09-14 Sebastien Pouliot <[email protected]>
  35. * OleDbPermission.cs: Added internal constructor accepting an OleDb
  36. PermissionAttribute parameter (using base class protected ctor).
  37. Re-added the Provider property (removed by error).
  38. * OleDbPermission.cs: Copy now use the new OleDbPermission
  39. constructor. Re-added the Provider property (removed by error).
  40. 2004-09-13 Sebastien Pouliot <[email protected]>
  41. * OleDbPermission.cs: Mostly completed (needs tests).
  42. * OleDbPermissionAttribute.cs: Completed.
  43. 2004-06-16 Gert Driesen <[email protected]>
  44. * OleDbError.cs: fixed serialization compatibility with MS.NET
  45. * OleDbErrorCollection.cs: fixed serialization compatibility with
  46. MS.NET
  47. 2004-06-13 Gert Driesen <[email protected]>
  48. * OleDbLiteral.cs: changed enum field values to match MS.NET
  49. * OleDbType.cs: changed enum field values to match MS.NET
  50. 2004-06-04 Gert Driesen <[email protected]>
  51. * OleDbDataAdapter.cs: added stub for missing
  52. Dispose override
  53. 2004-06-02 Gert Driesen <[email protected]>
  54. * OleDbParameter.cs: added missing attributes
  55. * OleDbPermission.cs: added missing attributes
  56. * OleDbConnection.cs: added missing attributes
  57. * OleDbDataAdapter.cs: added missing attributes
  58. 2004-05-27 Atsushi Enomoto <[email protected]>
  59. * OleDbDataReader.cs : don't output debug message to Console.
  60. 2004-05-20 Gert Driesen ([email protected])
  61. * OleDbPermissionAttribute.cs: change AllowMultiple and
  62. Inherited to match .NET
  63. 2004-05-14 Umadevi S ([email protected])
  64. * OleDbAdapter.cs -Implemented attributes, changed method signature for fill
  65. 2004-05-14 Umadevi S ([email protected])
  66. * OleDbCommand.cs - Completed implementing all the attributes
  67. 2004-05-14 Umadevi S ([email protected])
  68. * OleDbCommand.cs - Completed implementing all the attribute
  69. 2004-05-14 Umadevi S ([email protected])
  70. * OleDbConnection.cs - Completed implementing all the attributes
  71. - Stubbed EnlistDistributedTransaction method
  72. 2004-05-14 Umadevi S ([email protected])
  73. * OleDbDataAdapter.cs - Completed implementing all the attributes
  74. - Stubbed the Fill methods
  75. 2004-05-14 Umadevi S ([email protected])
  76. * OleDbParameter.cs - Completed implementing all the attributes
  77. 2004-05-13 Umadevi S ([email protected])
  78. * OleDbDataReader.cs - Stubbed HasRows method
  79. - Implemented EditorBrowsableAttribute
  80. * OleDbParameterConverter.cs - Stubbed this class
  81. * OleDbParameter.cs - Added a few attributes.
  82. 2004-05-09 Gert Driesen ([email protected])
  83. * OleDbCommand.cs: removed setter for Parameters property to
  84. match MS.NET
  85. * OleDbCommandBuilder.cs: fixed GetUpdatetCommand typo
  86. * OleDbErrorCollection: added default internal ctor to match
  87. MS.NET
  88. * OleDbInfoMessageEventArgs.cs: added default internal ctor
  89. to match MS.NET
  90. * OleDbParameter.cs: added setter for IsNullable
  91. * OleDbParameterCollection: added default internal ctor to
  92. match MS.NET
  93. * OleDbPermission.cs: removed extra IsSubsetOf method
  94. 2004-04-06 Gonzalo Paniagua Javier <[email protected]>
  95. * OleDbPermissionAttribute.cs: missing bits from Gert's patch for
  96. CLS compliance.
  97. 2004-01-10 Atsushi Enomoto <[email protected]>
  98. * OleDbPermission.cs : NET_2_0 fix not to call obsolete .ctor.
  99. 2002-11-01 Daniel Morgan <[email protected]>
  100. * OleDbDataReader.cs: implemented
  101. Dispose() and GetEnumerator()