ChangeLog 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. 2007-07-22 Nagappan A <[email protected]>
  2. * OleDbDataReader.cs: Fixed compilation warning.
  3. * OleDbParameterCollection.cs: Fixed compilation warning.
  4. * OleDbTransaction.cs: Fixed compilation warning.
  5. * OleDbCommandBuilder.cs: Fixed compilation warning.
  6. 2007-07-02 Gert Driesen <[email protected]>
  7. * OleDbConnection.cs: Derive from DbConnection on 2.0 profile, and
  8. stubbed out where necessary. Fixed attributes for ConnectionString on
  9. 2.0 profile. Marked several members as override on 2.0 profile.
  10. Do not hide StateChange event. Code formatting.
  11. * OleDbCommandBuilder.cs: On 2.0, derive from DbCommandBuilder. Do not
  12. include QuotePrefix and QuoteSuffix on 2.0. Stubbed out 2.0 members.
  13. * OleDbDataAdapter.cs: On 2.0, derive from DbDataAdapter. Stubbed out
  14. 2.0 members. Do not not override Dispose on 2.0. Code formatting.
  15. * OleDbDataReader.cs: Derive from DbDataReader on 2.0 profile. Marked
  16. several members as override. Stubbed VisibleFieldCount. Added
  17. EditorBrowsable attribute on GetData. Added GetDbDataReader on 2.0.
  18. On 2.0, override GetEnumerator instead of explicit interface
  19. implementation.
  20. * OleDbErrorCollection.cs: Added 2.0 CopyTo overload.
  21. * OleDbInfoMessageEventHandler.cs: Do not mark class serializable on
  22. 2.0 profile. Fixed API mismatch.
  23. * OleDbParameter.cs: On 2.0, derive from DbParameter. Added new 2.0
  24. ctor. Override properties from base class and added
  25. SourceColumnNullMapping property on 2.0. Implemented ResetDbType and
  26. ResetOleDbType methods on 2.0.
  27. * OleDbParameterCollection.cs: Derive from DbParameterCollection on
  28. 2.0 profile. Marked several members as override. Implemented AddRange,
  29. CopyTo, IndexOf, Insert, Remove and RemoveAt methods introduced in
  30. 2.0 profile. Stubbed out GetParameter and SetParameter overloads.
  31. * OleDbPermission.cs: Added missing BrowsableAttribute on Provider.
  32. Code formatting.
  33. * OleDbPermissionAttribute.cs: Added BrowsableAttribute on Provdider
  34. (2.0 only).
  35. * OleDbRowUpdatedEventHandler.cs: Do not mark class serializable on
  36. 2.0 profile.
  37. * OleDbRowUpdatingEventArgs.cs: Removed unused command field. Added
  38. BaseCommand property on 2.0
  39. * OleDbRowUpdatingEventHandler.cs: Do not mark class serializable on
  40. 2.0 profile. Fixed API mismatch.
  41. * OleDbTransaction.cs: On 2.0, derive from DbTransaction. Added
  42. DbConnection property and override Dispose (both 2.0 only). On 2.0,
  43. Override Commit and Rollback. Code formatting.
  44. 2007-07-01 Gert Driesen <[email protected]>
  45. * OleDbCommand.cs: 2.0 API fixes. Build fix.
  46. 2007-07-01 Gert Driesen <[email protected]>
  47. * OleDbCommand.cs: Code formatting.
  48. * OleDbDataReader.cs: Code formatting.
  49. * OleDbError.cs: Code formatting.
  50. * OleDbErrorCollection.cs: Code formatting.
  51. * OleDbException.cs: Code formatting.
  52. * OleDbInfoMessageEventArgs.cs: Code formatting.
  53. * OleDbParameter.cs: Code formatting.
  54. * OleDbParameterCollection.cs: Code formatting.
  55. 2007-06-21 Nagappan A <[email protected]>
  56. * OleDbConnection.cs: Fixed compiler warning.
  57. * OleDbParameterCollection.cs (AddWithValue): Fixed compiler
  58. warning.
  59. 2007-02-20 Frederik Carlier <[email protected]>
  60. * OleDbParameterCollection.cs: Added AddWithValue method.
  61. 2007-01-08 Nagappan A <[email protected]>
  62. * OleDbCommand.cs: Fixed compilation warning.
  63. * OleDbDataAdapter.cs: Fixed compilation warning.
  64. 2006-07-13 Senganal T <[email protected]>
  65. * OleDbCommand : 2.0 Api fixes
  66. 2006-05-31 Gert Driesen <[email protected]>
  67. * OleDbErrorCollection.cs: Removed explicit interface implementation
  68. of IEnumerable.GetEnumerator ().
  69. * OleDbParameterCollection.cs: Removed explicit interface
  70. implementation members that are already implementation by public
  71. members.
  72. 2006-02-17 Chris Toshok <[email protected]>
  73. * OleDbDataAdapter.cs, OleDbCommand.cs, OleDbParameter.cs,
  74. OleDbCommandBuilder.cs, OleDbConnection.cs: remove
  75. DataSysDescriptions for >= 2.0.
  76. 2006-02-17 Chris Toshok <[email protected]>
  77. * OleDbCommand.cs: remove extra using System.Data. fixes warning.
  78. 2005-10-04 Sebastien Pouliot <[email protected]>
  79. * OleDbDataReader.cs: Added a call to GC.SuppressFinalize in Dispose
  80. method (and avoids calling the destructor if the object was disposed).
  81. * OleDbTransaction.cs: Added a call to GC.SuppressFinalize in Dispose
  82. method (even if we throw an NotImplementedException afterward). This
  83. will remove warnings from gendarme.
  84. 2005-09-20 Alexandre Miguel Pedro Gomes <[email protected]>
  85. * OleDbConnection.cs: Verify and throw an exception if the
  86. connection isn't valid.
  87. 2005-09-13 Sureshkumar T <[email protected]>
  88. * Moved TestGda.cs & TestOleDb.cs to ..\Test.
  89. 2005-08-08 Gert Driesen <[email protected]>
  90. * OleDbDataAdapter.cs: Fixed custom attributes to match MS.NET.
  91. * OleDbCommand.cs: Fixed custom attributes to match MS.NET.
  92. * OleDbParameter.cs: Fixed custom attribute to match MS.NET.
  93. * OleDbException.cs: Added ErrorTypeConverter, assigned to ErrorCode
  94. property to match MS.NET.
  95. * OleDbConnection.cs: Fixed custom attributes to match MS.NET.
  96. 2005-02-16 Lluis Sanchez Gual <[email protected]>
  97. * OleDbCommand.cs: Make it inherit from the correct base class in 2.0,
  98. and added stubs for some interface methods.
  99. 2004-09-14 Sebastien Pouliot <[email protected]>
  100. * OleDbPermission.cs: Added internal constructor accepting an OleDb
  101. PermissionAttribute parameter (using base class protected ctor).
  102. Re-added the Provider property (removed by error).
  103. * OleDbPermission.cs: Copy now use the new OleDbPermission
  104. constructor. Re-added the Provider property (removed by error).
  105. 2004-09-13 Sebastien Pouliot <[email protected]>
  106. * OleDbPermission.cs: Mostly completed (needs tests).
  107. * OleDbPermissionAttribute.cs: Completed.
  108. 2004-06-16 Gert Driesen <[email protected]>
  109. * OleDbError.cs: fixed serialization compatibility with MS.NET
  110. * OleDbErrorCollection.cs: fixed serialization compatibility with
  111. MS.NET
  112. 2004-06-13 Gert Driesen <[email protected]>
  113. * OleDbLiteral.cs: changed enum field values to match MS.NET
  114. * OleDbType.cs: changed enum field values to match MS.NET
  115. 2004-06-04 Gert Driesen <[email protected]>
  116. * OleDbDataAdapter.cs: added stub for missing
  117. Dispose override
  118. 2004-06-02 Gert Driesen <[email protected]>
  119. * OleDbParameter.cs: added missing attributes
  120. * OleDbPermission.cs: added missing attributes
  121. * OleDbConnection.cs: added missing attributes
  122. * OleDbDataAdapter.cs: added missing attributes
  123. 2004-05-27 Atsushi Enomoto <[email protected]>
  124. * OleDbDataReader.cs : don't output debug message to Console.
  125. 2004-05-20 Gert Driesen ([email protected])
  126. * OleDbPermissionAttribute.cs: change AllowMultiple and
  127. Inherited to match .NET
  128. 2004-05-14 Umadevi S ([email protected])
  129. * OleDbAdapter.cs -Implemented attributes, changed method signature for fill
  130. 2004-05-14 Umadevi S ([email protected])
  131. * OleDbCommand.cs - Completed implementing all the attributes
  132. 2004-05-14 Umadevi S ([email protected])
  133. * OleDbCommand.cs - Completed implementing all the attribute
  134. 2004-05-14 Umadevi S ([email protected])
  135. * OleDbConnection.cs - Completed implementing all the attributes
  136. - Stubbed EnlistDistributedTransaction method
  137. 2004-05-14 Umadevi S ([email protected])
  138. * OleDbDataAdapter.cs - Completed implementing all the attributes
  139. - Stubbed the Fill methods
  140. 2004-05-14 Umadevi S ([email protected])
  141. * OleDbParameter.cs - Completed implementing all the attributes
  142. 2004-05-13 Umadevi S ([email protected])
  143. * OleDbDataReader.cs - Stubbed HasRows method
  144. - Implemented EditorBrowsableAttribute
  145. * OleDbParameterConverter.cs - Stubbed this class
  146. * OleDbParameter.cs - Added a few attributes.
  147. 2004-05-09 Gert Driesen ([email protected])
  148. * OleDbCommand.cs: removed setter for Parameters property to
  149. match MS.NET
  150. * OleDbCommandBuilder.cs: fixed GetUpdatetCommand typo
  151. * OleDbErrorCollection: added default internal ctor to match
  152. MS.NET
  153. * OleDbInfoMessageEventArgs.cs: added default internal ctor
  154. to match MS.NET
  155. * OleDbParameter.cs: added setter for IsNullable
  156. * OleDbParameterCollection: added default internal ctor to
  157. match MS.NET
  158. * OleDbPermission.cs: removed extra IsSubsetOf method
  159. 2004-04-06 Gonzalo Paniagua Javier <[email protected]>
  160. * OleDbPermissionAttribute.cs: missing bits from Gert's patch for
  161. CLS compliance.
  162. 2004-01-10 Atsushi Enomoto <[email protected]>
  163. * OleDbPermission.cs : NET_2_0 fix not to call obsolete .ctor.
  164. 2002-11-01 Daniel Morgan <[email protected]>
  165. * OleDbDataReader.cs: implemented
  166. Dispose() and GetEnumerator()