ChangeLog 11 KB

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