ChangeLog 5.9 KB

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