ChangeLog 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. 2004-05-20 Gert Driesen ([email protected])
  2. * OdbcPermissionAttribute.cs: change AllowMultiple and
  3. Inherited to match .NET
  4. 2004-05-17 Umadevi S ([email protected])
  5. * OdbcPermissionAttribute, OdbcPermission.cs - fixed missing methods
  6. 2004-05-17 Gert Driesen ([email protected])
  7. * OdbcCategoryAttribute.cs: fixed namespace
  8. * OdbcDataAdapter.cs: removed extra attributes
  9. * OdbcDescriptionAttribute.cs: fixed namespace
  10. 2004-05-14 Umadevi S ([email protected])
  11. * OdbcParameterConverter.cs -Added
  12. * OdbcParameter.cs - Added some attributes
  13. 2004-05-14 Umadevi S ([email protected])
  14. * OdbcDataAdapter.cs - Added Attributes
  15. 2004-05-14 Umadevi S ([email protected])
  16. * OdbcConnection.cs - Added Attributes
  17. 2004-05-14 Umadevi S ([email protected])
  18. * OdbcCommand.cs - Added Attributes
  19. 2004-05-14 Umadevi S ([email protected])
  20. * OdbcDataReader.cs - Added Attributes
  21. 2004-05-14 Umadevi S ([email protected])
  22. * Added Classes OdbcCategoryAttribute.cs, OdbcDescriptionAttribute.cs
  23. 2004-05-14 Umadevi S ([email protected])
  24. * Added Class OdbcCommandBuilder.cs
  25. 2004-05-14 Umadevi S ([email protected])
  26. * Added classes OdbcInfoMessageEventArgs.cs - with stubs
  27. * Added classes OdbcInfoMessageEventInfo.cs
  28. 2004-05-14 Umadevi S ([email protected])
  29. * Added classes OdbcPermission.cs, OdbcPermissionAttribute.cs - with stubs
  30. 2004-05-09 Gert Driesen ([email protected])
  31. * OdbcException.cs : removed ErrorCode property, fixing signature
  32. * OdbcErrorCollection.cs : added internal ctor, reduced
  33. accessibility of Add method to internal
  34. * OdbcCommand.cs: marked hstmt field private, remove setters for
  35. Parameters property
  36. * OdbcDataReader.cs: Added GetDate method, renamed GetTimeSpan to
  37. GetTime to match MS.NET, added HasRows stub
  38. 2004-05-09 Gert Driesen ([email protected])
  39. * OdbcError.cs:
  40. * OdbcErrorCollection.cs:
  41. * OdbcException.cs: fixed linefeeds to DOS to match other
  42. sources in System.Data.Odbc
  43. 2004-05-09 Gert Driesen ([email protected])
  44. * OdbcCommand.cs: No longer use OdbcConnection.Datareader, in order
  45. to fix signature of OdbcConnection
  46. * OdbcDataReader.cs: No longer use ODbcConnection.Datareader, in
  47. order to fix signature of OdbcConnection
  48. * OdbcConnection.cs: Signature fixes: removed DataReader property,
  49. added setter for ConnectionTimeout, made transaction internal
  50. * OdbcParameter.cs: reduced accessibility of Bind method to
  51. internal, added setter for IsNullable
  52. * OdbcParameterCollection.cs: made default ctor and Bind method
  53. internal
  54. 2004-05-09 Gert Driesen ([email protected])
  55. * OdbcCommand.cs: fixed linefeeds to DOS to match other sources
  56. in System.Data.Odbc
  57. 2004-05-09 Gert Driesen ([email protected])
  58. * OdbcTransaction.cs: fixed signature to match MS.NET
  59. 2004-05-09 Gert Driesen ([email protected])
  60. * OdbcType.cs: fixed typo UniqueIndetifier
  61. * OdbcColumn.cs : fixed typo UniqueIndetifier
  62. 2004-05-09 Gert Driesen ([email protected])
  63. * OdbcType.cs: fixed linefeeds to DOS to match other sources
  64. in System.Data.Odbc
  65. 2003-12-01 Gonzalo Paniagua Javier <[email protected]>
  66. * OdbcTransaction.cs: applied patch from Jeff Seifert that makes
  67. this class implement IDbTransaction interface.
  68. 2002-11-01 Daniel Morgan <[email protected]>
  69. * OdbcDataReader.cs: - uncommented code, but I put a FIXME:
  70. according to Brian, this does not work on MS .NET however, we need it
  71. for Mono for now. schemaRow.AcceptChanges(),
  72. - implement IEnumerable.GetEnumerator()
  73. * libodbc.cs: changed the DllImport from "odbc32.dll" to "odbc32"
  74. 2002-10-21 Gonzalo Paniagua Javier <[email protected]>
  75. * ChangeLog: added.
  76. * OdbcError.cs:
  77. * OdbcException.cs: added dummy implementation for these missing
  78. classes.