Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ChangeLog « System.Data.OleDb « System.Data « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 780a4a19087fc1cd30cc2e013ae9fb5a70dbcdc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
2006-02-17  Chris Toshok  <toshok@ximian.com>

	* OleDbDataAdapter.cs, OleDbCommand.cs, OleDbParameter.cs,
	OleDbCommandBuilder.cs, OleDbConnection.cs: remove
	DataSysDescriptions for >= 2.0.

2006-02-17  Chris Toshok  <toshok@ximian.com>

	* OleDbCommand.cs: remove extra using System.Data.  fixes warning.

2005-10-04  Sebastien Pouliot  <sebastien@ximian.com>

	* OleDbDataReader.cs: Added a call to GC.SuppressFinalize in Dispose
	method (and avoids calling the destructor if the object was disposed).
	* OleDbTransaction.cs: Added a call to GC.SuppressFinalize in Dispose
	method (even if we throw an NotImplementedException afterward). This
	will remove warnings from gendarme.

2005-09-20  Alexandre Miguel Pedro Gomes  <alexmipego@gmail.com>
	
	* OleDbConnection.cs: Verify and throw an exception if the
	connection isn't valid.

2005-09-13  Sureshkumar T  <tsureshkumar@novell.com>

	* Moved TestGda.cs & TestOleDb.cs to ..\Test.
	
2005-08-08  Gert Driesen  <drieseng@users.sourceforge.net>

	* OleDbDataAdapter.cs: Fixed custom attributes to match MS.NET.
	* OleDbCommand.cs: Fixed custom attributes to match MS.NET.
	* OleDbParameter.cs: Fixed custom attribute to match MS.NET.
	* OleDbException.cs: Added ErrorTypeConverter, assigned to ErrorCode
	property to match MS.NET.
	* OleDbConnection.cs: Fixed custom attributes to match MS.NET.

2005-02-16  Lluis Sanchez Gual  <lluis@novell.com>

	* OleDbCommand.cs: Make it inherit from the correct base class in 2.0,
	and added stubs for some interface methods.

2004-09-14  Sebastien Pouliot  <sebastien@ximian.com>

	* OleDbPermission.cs: Added internal constructor accepting an OleDb
	PermissionAttribute parameter (using base class protected ctor).
	Re-added the Provider property (removed by error).
	* OleDbPermission.cs: Copy now use the new OleDbPermission
	constructor. Re-added the Provider property (removed by error).

2004-09-13  Sebastien Pouliot  <sebastien@ximian.com>

	* OleDbPermission.cs: Mostly completed (needs tests).
	* OleDbPermissionAttribute.cs: Completed.

2004-06-16  Gert Driesen <drieseng@users.sourceforge.net>

	* OleDbError.cs: fixed serialization compatibility with MS.NET
	* OleDbErrorCollection.cs: fixed serialization compatibility with
	MS.NET

2004-06-13  Gert Driesen <drieseng@users.sourceforge.net>

	* OleDbLiteral.cs: changed enum field values to match MS.NET
	* OleDbType.cs: changed enum field values to match MS.NET

2004-06-04  Gert Driesen <drieseng@users.sourceforge.net>

	* OleDbDataAdapter.cs: added stub for missing 
	Dispose override

2004-06-02  Gert Driesen <drieseng@users.sourceforge.net>

        * OleDbParameter.cs: added missing attributes
        * OleDbPermission.cs: added missing attributes
        * OleDbConnection.cs: added missing attributes
        * OleDbDataAdapter.cs: added missing attributes

2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>

	* OleDbDataReader.cs : don't output debug message to Console.

2004-05-20  Gert Driesen (drieseng@users.sourceforge.net)

        *  OleDbPermissionAttribute.cs: change AllowMultiple and
        Inherited to match .NET

2004-05-14 Umadevi S (sumadevi@novell.com)
        * OleDbAdapter.cs -Implemented attributes, changed method signature for fill

2004-05-14 Umadevi S (sumadevi@novell.com)
        * OleDbCommand.cs - Completed implementing all the attributes

2004-05-14 Umadevi S (sumadevi@novell.com)
        * OleDbCommand.cs - Completed implementing all the attribute

2004-05-14 Umadevi S (sumadevi@novell.com)
        * OleDbConnection.cs - Completed implementing all the attributes
                           - Stubbed EnlistDistributedTransaction method

2004-05-14 Umadevi S (sumadevi@novell.com)
        * OleDbDataAdapter.cs - Completed implementing all the attributes
			   - Stubbed the Fill methods

2004-05-14 Umadevi S (sumadevi@novell.com)
        * OleDbParameter.cs - Completed implementing all the attributes             


2004-05-13 Umadevi S (sumadevi@novell.com)
	* OleDbDataReader.cs - Stubbed HasRows method
			- Implemented EditorBrowsableAttribute
	* OleDbParameterConverter.cs - Stubbed this class
	* OleDbParameter.cs - Added a few attributes.

2004-05-09  Gert Driesen (drieseng@users.sourceforge.net)
	* OleDbCommand.cs: removed setter for Parameters property to
	match MS.NET
	* OleDbCommandBuilder.cs: fixed GetUpdatetCommand typo
	* OleDbErrorCollection: added default internal ctor to match
	MS.NET
	* OleDbInfoMessageEventArgs.cs: added default internal ctor
	to match MS.NET
	* OleDbParameter.cs: added setter for IsNullable
	* OleDbParameterCollection: added default internal ctor to
	match MS.NET
	* OleDbPermission.cs: removed extra IsSubsetOf method

2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* OleDbPermissionAttribute.cs: missing bits from Gert's patch for
	CLS compliance.

2004-01-10  Atsushi Enomoto  <atsushi@ximian.com>

	* OleDbPermission.cs : NET_2_0 fix not to call obsolete .ctor.

2002-11-01  Daniel Morgan <danmorg@sc.rr.com>

	* OleDbDataReader.cs: implemented
	Dispose() and GetEnumerator()