ChangeLog 4.9 KB

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