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