ChangeLog 5.7 KB

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