ChangeLog 4.7 KB

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