ChangeLog 8.9 KB

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