ChangeLog 6.8 KB

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