2
0

ChangeLog 5.2 KB

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