ChangeLog 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. 2002-07-11 Rodrigo Moya <[email protected]>
  2. * libgda.cs: added new libgda functions and some enumerations.
  3. * OleDbParameter.cs (IsNullable): removed explicit implementation
  4. of the set method for this property.
  5. * OleDbDataAdapter.cs (MissingMappingAction): implemented.
  6. (MissingSchemaAction): implemented.
  7. 2002-07-10 Tim Coleman <[email protected]>
  8. * OleDbCommandBuilder.cs: Added new methods, properties
  9. * OleDbConnection.cs: Modified constructor
  10. * OleDbError.cs: Added stubbs
  11. * OleDbException.cs: Added stubbs
  12. * OleDbInfoMessageEventArgs.cs: Added stubbs
  13. * OleDbInfoMessageEventHandler.cs: style change
  14. * OleDbParameter.cs: Added conversion from type to OleDbType
  15. * OleDbPermission.cs: Added stubbs
  16. * OleDbSchemaGuid.cs: Added stubbs
  17. * OleDbTransaction.cs: New constructors, changes to methods to
  18. support transaction nesting
  19. * libgda.cs: Added my name to this file
  20. 2002-07-09 Tim Coleman <[email protected]>
  21. * OleDbCommand.cs: Style changes, added new methods
  22. * OleDbConnection.cs: Style changes, added new methods
  23. * OleDbDataAdapter.cs: Implementation
  24. * OleDbDataReader.cs: Added stubbs
  25. * OleDbErrorCollection.cs: Added stubbs, some implementation
  26. * OleDbParameter.cs: Style changes, added new methods
  27. * OleDbParameterCollection.cs: Style changes, added new methods
  28. * OleDbPermissionAttribute.cs: Style changes, added new methods
  29. * OleDbRowUpdatedEventArgs.cs: Added stubbs
  30. * OleDbRowUpdatingEventArgs.cs: Added stubbs
  31. * OleDbTransaction.cs: Style changes, added new methods
  32. * OleDbType.cs: Fixed two typos
  33. * libgda.cs: Style changes, added new methods
  34. 2002-06-03 Rodrigo Moya <[email protected]>
  35. * OleDbParameterCollection.cs (GetEnumerator, SyncRoot,
  36. IsSynchronized): implemented.
  37. 2002-06-02 Rodrigo Moya <[email protected]>
  38. * OleDbTransaction.cs (Dispose): added missing method.
  39. * OleDbCommand.cs (Clone): added missing methods.
  40. (Parameters, Transaction, Connection): made these overload
  41. IDbCommand's ones.
  42. * OleDbParameterCollection.cs (IndexOf, Remove, RemoveAt):
  43. call m_list methods, not own ones.
  44. * OleDbParameter.cs: more implementation.
  45. 2002-06-02 Rodrigo Moya <[email protected]>
  46. * OleDbTransaction.cs (Connection, IsolationLevel, Begin,
  47. Commit, Rollback): implemented.
  48. (GdaConnection): added new internal property.
  49. * OleDbParameter.cs:
  50. * OleDbParameterCollection.cs: implemented some methods and
  51. properties.
  52. * libgda.cs: added yet more libgda API functions.
  53. 2002-06-01 Rodrigo Moya <[email protected]>
  54. * libgda.cs: added new libgda API functions.
  55. * OleDbConnection.cs (Provider): implemented.
  56. (BeginTransaction): made it overload IDbConnection methods.
  57. (ChangeDatabase): new stub, needs some work on libgda for being
  58. implemented.
  59. (Clone): new stub.
  60. (Close): implemented.
  61. (CreateCommand): implemented.
  62. (GetOleDbSchemaTable): new stub, until I understand what to do here.
  63. (Open): implemented basic stuff, which is just supporting connection
  64. strings that represent a GDA data source name. More to come.
  65. (InfoMessage, StateChange): added events.
  66. * TestOleDb.cs: test program for System.Data.OleDb.
  67. 2002-05-29 Rodrigo Moya <[email protected]>
  68. * libgda.cs: added static constructor.
  69. (GdaClient): new static property to get the underlying GdaClient
  70. object.
  71. * OleDbConnection.cs: removed GDA initialization, which belongs to
  72. the static 'libgda' class.
  73. 2002-05-29 Rodrigo Moya <[email protected]>
  74. * libgda.cs: static class for libgda API calls.
  75. * OleDbConnection.cs: implemented constructors.
  76. (ConnectionString, Connectiontimeout, Database, State):
  77. implemented class properties.
  78. (BeginTransaction): implemented.
  79. * OleDbTransaction.cs: implemented protected constructors.
  80. * TestGDA.cs: simple test for libgda API.
  81. 2002-05-27 Rodrigo Moya <[email protected]>
  82. Started System.Data.OleDb provider, based on libgda.