ChangeLog 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. 2005-01-20 Sureshkumar T <[email protected]>
  2. * OdbcDataReader.cs: case for type OdbcType.Double added in
  3. GetValue. fixes bug #71173.
  4. Thanks to patch given by "Appasamy T" <[email protected]>
  5. 2005-01-19 Sureshkumar T <[email protected]>
  6. * OdbcType.cs: Change enum values for compatiability with MS.NET.
  7. * libodbc.cs: Change enum values for compatiability with
  8. MS.NET. Change calls into driver with native type.
  9. * OdbcDataReader.cs: Change enum values for compatiability with
  10. MS.NET. Change calls from/into driver with native type.
  11. 2005-01-18 Sureshkumar T <[email protected]>
  12. * OdbcDataReader.cs: GetOrdinal need not check for
  13. currentRow. Return -1 if column name is not found.
  14. fixes bug #71261. Thanks to patch given by "Appasamy T"
  15. <[email protected]>.
  16. 2005-01-13 Sureshkumar T <[email protected]>
  17. * OdbcDataReader.cs: Implement NextResultSet for multiple result
  18. set queries.
  19. * OdbcDataReader.cs: build column schema once creating reader and
  20. then for each Next result set. Thanks to
  21. [email protected] (Sebastien Robitaille) for
  22. pointing out this optimization (bugzilla #70530).
  23. * libodbc.cs: Added library calls SQLFreeStmt and SQLMoreResults
  24. for mutiple resultsets.
  25. 2005-01-10 Sureshkumar T <[email protected]>
  26. * OdbcDataReader.cs: Connection has to be closed only after
  27. Statement handle is freed. fixes bug #70048.
  28. 2005-01-07 Sureshkumar T <[email protected]>
  29. * OdbcDataReader.cs: Pass OdbcCType.SignedBigInt for accessing big
  30. int columns.
  31. * OdbcType.cs: Added a new enum for Odbc C DataTypes. This should
  32. essentially be passed to drivers, since the public OdbcType types
  33. differs from types expected in drivers in some cases.
  34. * libodbc.cs : Added a ODBC method which takes OdbcCType
  35. enumeration for SQLGetData for BigInt fields.
  36. fixes bug #65342.
  37. 2004-12-28 Duncan Mak <[email protected]>
  38. * libodbc.cs: Change all the DllImport attributes to point to
  39. "odbc32.dll" instead of "odbc32", because /etc/mono/config lists
  40. "odbc32.dll" (all other entries in the file have the .dll suffix
  41. as well, for consistency's sake, let's rename it here.)
  42. This fixes #70727.
  43. 2004-12-03 Sureshkumar T <[email protected]>
  44. * OdbcParameter.cs: Fixed a null reference exception when a
  45. parameter is created and its value is not set. #68750.
  46. 2004-11-26 Sureshkumar T <[email protected]>
  47. * OdbcParameter.cs: Fixed Parameter Size property as well as
  48. insufficient buffer errors. bug #68749.
  49. 2004-09-14 Sebastien Pouliot <[email protected]>
  50. * OdbcPermission.cs: Added internal constructor accepting an Odbc
  51. PermissionAttribute parameter (using base class protected ctor).
  52. * OdbcPermissionAttribute.cs: Copy now use the new OdbcPermission
  53. constructor.
  54. 2004-09-13 Sebastien Pouliot <[email protected]>
  55. * OdbcPermission.cs: Mostly completed (needs tests).
  56. * OdbcPermissionAttribute.cs: Completed.
  57. 2004-08-31 Umadevi S ([email protected])
  58. * OdbcDataReader.cs - Fixed Decimal parsing
  59. 2004-08-30 Umadevi S ([email protected])
  60. * OdbcType.cs - removed inheritance from short.
  61. 2004-08-27 Sureshkumar T ([email protected])
  62. * OdbcDataReader.cs - fixed bug #63539 - TINYINT ODBC datatype is converted into System.Byte
  63. 2004-08-26 Sureshkumar T ([email protected])
  64. * OdbcDataReader.cs - Date & DateTime GetValue fixed.
  65. GetBytes ordinal parameter passing fixed for BINARY in GetValue.
  66. 2004-08-20 Sureshkumar T ([email protected])
  67. * OdbcConnection.cs - correct handles are passed to OdbcError exception to trap the correct error
  68. 2004-08-04 Umadevi S ([email protected])
  69. * OdbcDataReader.cs - Fixed bug 61832 - Column names were not filled, due to which name based lookup of columns failed.
  70. 2004-08-04 Umadevi S ([email protected])
  71. * OdbcDataReader.cs - Fixed bug 61405 - Handling smallint column type.
  72. 2004-07-30 Sureshkumar T ([email protected])
  73. * OdbcCommand.cs: ExecuteNonQuery Closed statement handle to fix memory leak
  74. * OdbcDataReader.cs: Closed statement handle to fix memory leak
  75. Removed SQLState login in GetBytes coz OdbcError provides the same.
  76. 2004-07-29 Umadevi S ([email protected])
  77. * OdbcCommand.cs - Fixed bug 62046. ExecuteNonQuery implemented correctly
  78. 2004-07-28 Umadevi S ([email protected])
  79. * OdbcParameter.cs - fixed bug 61968. String values passed with quotes
  80. 2004-07-07 Umadevi S ([email protected])
  81. * OdbcConnection.cs - Allowed Close to be called multiple times
  82. - Implementation of Dispose method
  83. 2004-07-07 Umadevi S ([email protected])
  84. * OdbcCommand.cs : fixed set method for Transaction
  85. 2004-07-01 Sureshkumar T ([email protected])
  86. * OdbcCommand.cs : fixed reader problem with ExecuteScalar
  87. 2004-06-23 Sureshkumar T ([email protected])
  88. * OdbcConnection.cs: Fix: Moved env allocation to Open method.
  89. Disconnection & freeing handles are done in Close
  90. method to avoid simultaneous connections.
  91. * libodbc.cs : Added constants for odbc version.
  92. 2004-06-16 Gert Driesen <[email protected]>
  93. * OdbcError.cs: fixed serialization compatibility with MS.NET
  94. * OdbcErrorCollection.cs: fixed serialization compatibility with
  95. MS.NET
  96. * OdbcException.cs: fixed serialization compatibility with MS.NET
  97. 2004-06-16 Sureshkumar T ([email protected])
  98. * OdbcDataReader.cs: Added GetValue support for Sql Binary type to return byte array.
  99. Implemented GetBytes method.
  100. * libodbc.cs : Added enums, constants & imports for above fix.
  101. 2004-06-13 Gert Driesen <[email protected]>
  102. * OdbcDataReader.cs: changed GetData method to return IDataReader
  103. to match MS.NET
  104. 2004-06-09 Sureshkumar T ([email protected])
  105. * OdbcDataReader.cs: Removed checking of currentRow in GetName
  106. method
  107. 2004-06-04 Gert Driesen <[email protected]>
  108. * OdbcPermission.cs: moved Obsolete attribute to correct
  109. ctor
  110. 2004-06-02 Sureshkumar T ([email protected])
  111. * OdbcDataReader.cs: Implemented GetByte method. Fixed bug #58820
  112. 2004-06-02 Gert Driesen <[email protected]>
  113. * OdbcParameter.cs: added missing attributes
  114. * OdbcPermission.cs: added missing attributes
  115. * OdbcConnection.cs: fixes attribute, added missing attributes
  116. * OdbcInfoMessageEventArgs.cs: removed extra properties, fixed
  117. API compatibility with MS.NET
  118. * OdbcCommandBuilder.cs: use correct attributes
  119. 2004-05-20 Gert Driesen ([email protected])
  120. * OdbcPermissionAttribute.cs: change AllowMultiple and
  121. Inherited to match .NET
  122. 2004-05-17 Umadevi S ([email protected])
  123. * OdbcPermissionAttribute, OdbcPermission.cs - fixed missing methods
  124. 2004-05-17 Gert Driesen ([email protected])
  125. * OdbcCategoryAttribute.cs: fixed namespace
  126. * OdbcDataAdapter.cs: removed extra attributes
  127. * OdbcDescriptionAttribute.cs: fixed namespace
  128. 2004-05-14 Umadevi S ([email protected])
  129. * OdbcParameterConverter.cs -Added
  130. * OdbcParameter.cs - Added some attributes
  131. 2004-05-14 Umadevi S ([email protected])
  132. * OdbcDataAdapter.cs - Added Attributes
  133. 2004-05-14 Umadevi S ([email protected])
  134. * OdbcConnection.cs - Added Attributes
  135. 2004-05-14 Umadevi S ([email protected])
  136. * OdbcCommand.cs - Added Attributes
  137. 2004-05-14 Umadevi S ([email protected])
  138. * OdbcDataReader.cs - Added Attributes
  139. 2004-05-14 Umadevi S ([email protected])
  140. * Added Classes OdbcCategoryAttribute.cs, OdbcDescriptionAttribute.cs
  141. 2004-05-14 Umadevi S ([email protected])
  142. * Added Class OdbcCommandBuilder.cs
  143. 2004-05-14 Umadevi S ([email protected])
  144. * Added classes OdbcInfoMessageEventArgs.cs - with stubs
  145. * Added classes OdbcInfoMessageEventInfo.cs
  146. 2004-05-14 Umadevi S ([email protected])
  147. * Added classes OdbcPermission.cs, OdbcPermissionAttribute.cs - with stubs
  148. 2004-05-09 Gert Driesen ([email protected])
  149. * OdbcException.cs : removed ErrorCode property, fixing signature
  150. * OdbcErrorCollection.cs : added internal ctor, reduced
  151. accessibility of Add method to internal
  152. * OdbcCommand.cs: marked hstmt field private, remove setters for
  153. Parameters property
  154. * OdbcDataReader.cs: Added GetDate method, renamed GetTimeSpan to
  155. GetTime to match MS.NET, added HasRows stub
  156. 2004-05-09 Gert Driesen ([email protected])
  157. * OdbcError.cs:
  158. * OdbcErrorCollection.cs:
  159. * OdbcException.cs: fixed linefeeds to DOS to match other
  160. sources in System.Data.Odbc
  161. 2004-05-09 Gert Driesen ([email protected])
  162. * OdbcCommand.cs: No longer use OdbcConnection.Datareader, in order
  163. to fix signature of OdbcConnection
  164. * OdbcDataReader.cs: No longer use ODbcConnection.Datareader, in
  165. order to fix signature of OdbcConnection
  166. * OdbcConnection.cs: Signature fixes: removed DataReader property,
  167. added setter for ConnectionTimeout, made transaction internal
  168. * OdbcParameter.cs: reduced accessibility of Bind method to
  169. internal, added setter for IsNullable
  170. * OdbcParameterCollection.cs: made default ctor and Bind method
  171. internal
  172. 2004-05-09 Gert Driesen ([email protected])
  173. * OdbcCommand.cs: fixed linefeeds to DOS to match other sources
  174. in System.Data.Odbc
  175. 2004-05-09 Gert Driesen ([email protected])
  176. * OdbcTransaction.cs: fixed signature to match MS.NET
  177. 2004-05-09 Gert Driesen ([email protected])
  178. * OdbcType.cs: fixed typo UniqueIndetifier
  179. * OdbcColumn.cs : fixed typo UniqueIndetifier
  180. 2004-05-09 Gert Driesen ([email protected])
  181. * OdbcType.cs: fixed linefeeds to DOS to match other sources
  182. in System.Data.Odbc
  183. 2003-12-01 Gonzalo Paniagua Javier <[email protected]>
  184. * OdbcTransaction.cs: applied patch from Jeff Seifert that makes
  185. this class implement IDbTransaction interface.
  186. 2002-11-01 Daniel Morgan <[email protected]>
  187. * OdbcDataReader.cs: - uncommented code, but I put a FIXME:
  188. according to Brian, this does not work on MS .NET however, we need it
  189. for Mono for now. schemaRow.AcceptChanges(),
  190. - implement IEnumerable.GetEnumerator()
  191. * libodbc.cs: changed the DllImport from "odbc32.dll" to "odbc32"
  192. 2002-10-21 Gonzalo Paniagua Javier <[email protected]>
  193. * ChangeLog: added.
  194. * OdbcError.cs:
  195. * OdbcException.cs: added dummy implementation for these missing
  196. classes.