2
0

ChangeLog 7.8 KB

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