ChangeLog 8.1 KB

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