ChangeLog 5.5 KB

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