ChangeLog 11 KB

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