ChangeLog 7.0 KB

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