ChangeLog 4.6 KB

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