ChangeLog 8.7 KB

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