ChangeLog 11 KB

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