ChangeLog 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. 2004-05-09 Gert Driesen ([email protected])
  2. * OdbcException.cs : removed ErrorCode property, fixing signature
  3. * OdbcErrorCollection.cs : added internal ctor, reduced
  4. accessibility of Add method to internal
  5. * OdbcCommand.cs: marked hstmt field private, remove setters for
  6. Parameters property
  7. * OdbcDataReader.cs: Added GetDate method, renamed GetTimeSpan to
  8. GetTime to match MS.NET, added HasRows stub
  9. 2004-05-09 Gert Driesen ([email protected])
  10. * OdbcError.cs:
  11. * OdbcErrorCollection.cs:
  12. * OdbcException.cs: fixed linefeeds to DOS to match other
  13. sources in System.Data.Odbc
  14. 2004-05-09 Gert Driesen ([email protected])
  15. * OdbcCommand.cs: No longer use OdbcConnection.Datareader, in order
  16. to fix signature of OdbcConnection
  17. * OdbcDataReader.cs: No longer use ODbcConnection.Datareader, in
  18. order to fix signature of OdbcConnection
  19. * OdbcConnection.cs: Signature fixes: removed DataReader property,
  20. added setter for ConnectionTimeout, made transaction internal
  21. * OdbcParameter.cs: reduced accessibility of Bind method to
  22. internal, added setter for IsNullable
  23. * OdbcParameterCollection.cs: made default ctor and Bind method
  24. internal
  25. 2004-05-09 Gert Driesen ([email protected])
  26. * OdbcCommand.cs: fixed linefeeds to DOS to match other sources
  27. in System.Data.Odbc
  28. 2004-05-09 Gert Driesen ([email protected])
  29. * OdbcTransaction.cs: fixed signature to match MS.NET
  30. 2004-05-09 Gert Driesen ([email protected])
  31. * OdbcType.cs: fixed typo UniqueIndetifier
  32. * OdbcColumn.cs : fixed typo UniqueIndetifier
  33. 2004-05-09 Gert Driesen ([email protected])
  34. * OdbcType.cs: fixed linefeeds to DOS to match other sources
  35. in System.Data.Odbc
  36. 2003-12-01 Gonzalo Paniagua Javier <[email protected]>
  37. * OdbcTransaction.cs: applied patch from Jeff Seifert that makes
  38. this class implement IDbTransaction interface.
  39. 2002-11-01 Daniel Morgan <[email protected]>
  40. * OdbcDataReader.cs: - uncommented code, but I put a FIXME:
  41. according to Brian, this does not work on MS .NET however, we need it
  42. for Mono for now. schemaRow.AcceptChanges(),
  43. - implement IEnumerable.GetEnumerator()
  44. * libodbc.cs: changed the DllImport from "odbc32.dll" to "odbc32"
  45. 2002-10-21 Gonzalo Paniagua Javier <[email protected]>
  46. * ChangeLog: added.
  47. * OdbcError.cs:
  48. * OdbcException.cs: added dummy implementation for these missing
  49. classes.