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

ChangeLog « System.Data.Common « System.Data « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f416e72befb7cd181202da642df8f12db6dfe203 (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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
2004-06-17  Boris Kirzner  <borisk@mainsoft.com>
	* RecordCache.cs : Added CopyRecord mathod that copies single record from one table to another.

2004-06-17  Boris Kirzner  <borisk@mainsoft.com>
	* Datacontainer.cs : 
	  - Store and retreival of null and DBNull values reviewed.
	  - Added GetInt64 to support AutoIncrement of DataColumn.
	  - Added missing CopyValue method to BitDataContainer.
	  - Added FillValues method to propagate single value to whole container.
	
2004-06-10 Umadevi S <sumadevi@novell.com>
	* DataTableMappingCollection.cs - fixed nunit testcase errors
	IndexOfDataSetTable method

2004-06-09 Umadevi S <sumadevi@novell.com>
	* DataTableMappingCollection.cs - fixed nunit testcase errors
	- Add, GetByDataSetTable,Insert, Remove, RemoveAt methods.

2004-06-09 Umadevi S <sumadevi@novell.com>
	* DataColumnMappingCollection.cs - fixed nunit testcase errors
	- GetByDataSetColumn,IndexOfDataSetColumn, Remove methods.	

2004-06-08 Umadevi S <sumadevi@novell.com>
	* DataColumnMappingCollection.cs - fixed nunit testcase errors.
	- remove, removeat, contains methods.

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

	* DataAdapter.cs: added missing protected ctor
	* DbDataAdapter.cs: added stub for missing protected ctor
	* DbDataPermission.cs: added stubs for missing protected
	ctors, added stub for missing Clear method

2004-06-02  Gert Driesen <drieseng@users.sourceforge.net>
       * DataColumnMappingCollection.cs: added missing attributes on
       indexers

2004-05-27  Boris Kirzner  <borisk@mainsoft.com>
	* DataContainer.cs : Bug fixes in BitDataContainer.get_Item and StringDataContainer.SetValue .

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

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

2004-05-19  Boris Kirzner  <borisk@mainsoft.com>
	* Datacontainer.cs : CompareValues reviewed. set_Item and get_Item of null and DBNull values in case of DataContainers
	for primitive types reviewed. Added check for null values when reading from IDataRecord.
	
2004-05-19  Boris Kirzner <borisk@mainsoft.com>
	* RecordCache.cs - added. Each instance of record cache belongs to specific table
	and manages pool of records ( indexes into data containers) to be used by data rows.
	* DataContainer.cs - added. Provides implementation for data containers that holds data in arrays 
	of primitives or objects. Each data container belongs to specific DataColumn.
	* DbDataAdapter.cs - changes to complete data storage redesign. Bug fix in FillTable 
	( to fetch exact number of records required ).
	
2004-05-13 Umadevi S (sumadevi@novell.com)
	* DbDataPermissionAttribute.cs - Added KeyRestrictions property with a TODO tag

2004-05-09  Gert Driesen (drieseng@users.sourceforge.net)
	* ComparerFactory.cs: marked internal

2003-04-26  Boris Kirzner <borisk@mainsoft.com>
	* DataColumnMappingCollection.cs : Small fix in exception message thrown.
	  
2003-04-25  Boris Kirzner <borisk@mainsoft.com>
	* DbDataAdapter.cs : Fixed bug in Fill :
	  - Reader can have empty results (fo example from UPDATE or DELETE).
	  - Reader can have results with no rows (SELECT that returns 0 rows but have columns)
	  - In FillTable - skip rows only once for each table.
	
2003-04-14  Juraj Skripsky <juraj@hotfeet.ch>
	* DbDataAdapter.cs : Refactoring of Fill. New private method
	FillTable does most of the work now. Use int[] instead of
	hashtable for mapping. Move creation of tableArray[] outside
	of loop.

2004-03-12  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* DbDataPermissionAttribute.cs: Added .Net 1.1 marks
	* DataColumnMapping.cs: DO NOT USE the consts scheme if types can be referenced directly!
	* DataTableMapping.cs: DO NOT USE the consts scheme if types can be referenced directly!
	* DataColumnMappingConverter: Added stub
	* DataTableMappingConverter: Added stub

2004-03-03  Eran Domb  <erand@miansoft.com>
	
	* ComparerFactory.cs : Added.
	
2004-01-10  Atsushi Enomoto  <atsushi@ximian.com>

	* DbDataPermission.cs : tiny fix to pass OleDbPermission.

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

	* DbDataPermission.cs : .ctor(PermissionState state) should not call
	  obsolete .ctor(state, allowBlankPassword). csc reports an error.

2003-12-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DbDataAdapter.cs: handle MissingShemaAction.AddWithKey, call
	AcceptChanges in Update when a CommandBuilder is used and
	correctly fill information about primary keys in FillSchema.
	Patch from Sergei Malinin (smalinin@amurnet.ru).

2003-12-23  Tim Coleman <tim@timcoleman.com>
	* DbConnectionString.cs:
		Some implementation
	* DbProviderFactory.cs:
		Fix typo to make CLS compliant

2003-12-16  Jackson Harper <jackson@ximian.com>

	* SchemaTableOptionalColumn.cs: Add to fix default build
	
2003-12-16  Tim Coleman <tim@timcoleman.com>
	* CatalogLocation.cs DbCommand.cs DbCommandBuilder.cs
	* DbCommandOptionalFeatures.cs DbCommandSet.cs DbConnection.cs
	* DbConnectionString.cs DbDataSourceEnumerator.cs
	* DbDataUpdatableRecord.cs DbParameter.cs DbParameterCollection.cs
	* DbProviderConfigurationHandler.cs DbProviderFactories.cs
	* DbProviderFactoriesConfigurationHandler.cs DbProviderFactory.cs
	* DbProviderSupportedClasses.cs DbTable.cs DbTransaction.cs
	* GroupByBehavior.cs IdentifierCase.cs SchemaLocation.cs
	* SchemaTableColumn.cs:
		New stubs added for .NET 1.2
	* DataAdapter.cs DataColumnMapping.cs DataColumnMappingCollection.cs
	* DataTableMapping.cs DataTableMappingCollection.cs DbDataAdapter.cs
	* DbDataPermission.cs DbDataPermissionAttribute.cs DbDataRecord.cs
	* FieldNameLookup.cs SchemaInfo.cs:
		Changes made for .NET 1.2

2003-10-22  Eran Domb  <erand@miansoft.com>
	* DbDataAdapter.cs : Check if there is mapping to avoid exception.

2003-11-26  Tim Coleman <tim@timcoleman.com>
	* DbDataReader.cs: Add new stub class

2003-11-23  Pedro Martínez Juliá  <yoros@wanadoo.es>

	* DbDataAdapter.cs: Call command dispose in self dispose method. We
	need to dispose the connections and other stuff stored in the
	commands.

2003-11-10  Pedro Martínez Juliá  <yoros@wanadoo.es>

	* DataColumnMappingCollection.cs: Fix a missing exception when the
	required mapping is not in the collection. MS.NET throws an
	exception there.

2003-10-22  Eran Domb  <erand@miansoft.com>

	* DbDataAdapter.cs (Fill): add only the mapped column to the dataTable (not all columns of dataReader).
            Also closing the dataReader if an exception is thrown.
	(Fill): the same as above.
	(SetupSchema): in now return string (the table name). 
	(GetFillParameters): fix a bug.
	(BuildSchema) – it now return Hashtable. Add columns to the table only if there is a mapping. Build an Hashtable that maps the columns from the table to the column from the reader.
	(Update): first open the connection if needed. Catch an exception of the ExecuteQuery.
	

2003-09-30  Duncan Mak  <duncan@ximian.com>

	Patch from Eran Domb <eran@mainsoft.com>.
	
	* DbDataAdapter.cs (Fill): Fixed an Exception from being thrown.

2003-09-25  Duncan Mak  <duncan@ximian.com>

	* DbDataAdapter.cs (Fill): Patch from Eran Domb, <eran@mainsoft.com>.
	Fixes a possible NullReferenceException, more details here:

	http://lists.ximian.com/archives/public/mono-devel-list/2003-September/002116.html

2003-09-21  eran <erand@mainsoft.com>

	* DbDataRecord.cs: The method
	System.Data.Common.DbDataRecord.GetValues(object[] values) did not
	put the values of the DbDataRecord into values parameter.

2003-08-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DbDataAdapter.cs: provide a Type for ToArray to avoid invalid cast
	exception. Thanks to Mark Easton <measton@tebiki.co.uk>.

2003-07-31  Duncan Mak  <duncan@ximian.com>

	* DataAdapter.cs (CloneInternals): Mark with ObsoleteAttribute for
	NET_1_1.

2003-03-21  Alan Tam <Tam@SiuLung.com>

	* DbDataAdapter.cs: Update now uses correct DataRowVersion
	when accessing the data.

2003-03-17  Aleksey Demakov <avd@openlinksw.com>

	* DbDataAdapter.cs: BuildSchema now uses ColumnName instead
	of BaseColumnName (bug #39830) for DataColumn names.
	BaseTableName is no longer taken into account as well.

2003-02-28  Aleksey Demakov <avd@openlinksw.com>

	* DbDataAdapter.cs: Update (DataSet) updates the default
	table only.

2003-02-25  Alan Tam <Tam@SiuLung.com>
	
	* DbDataAdapter.cs: Added support for filling when schema is present.
	Fixed incorrect behavior when ColumnMapping is present
	when more than one fields have the same name. Implemented Dispose.
	Fixed error when there is no ColumnMapping at all.
	Still have some problems in finding the correct TableMapping
	because the SourceTable name is not present in BuildSchema

2003-02-24  Aleksey Demakov <avd@openlinksw.com>

	* DbDataAdapter.cs: The original code might pass a null DataTableMapping
	value which is then used to create a RowUpdatingEventArgs
	instance. So RowUpdatingEvent handler (for instance
	CommandBuilder) could get null DataTableMapping which
	might be unexpected. The patch makes sure that a non-null
	DataTableMapping is passed.

2003-01-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DbEnumerator.cs: why does the runtime throw an invalid cast here? The
	object is an Int16... Gotta fill a bug report and when fixed undo this
	patch.

2003-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DbDataRecord.cs: return DbNull.Value in GetValue () if value is null.

2002-10-31  Daniel Morgan <danmorg@sc.rr.com>

	* SchemaInfo.cs: added missing properties to fix mcs build

2002-05-05  Miguel de Icaza  <miguel@ximian.com>

	* DataTableMapping.cs, DataTableMappingCollection.cs: comment out
	interfaces we do not implement yet.

	* DbDataAdapter.cs: Stub IEnumerable, comment out interfaces
	we do not implement yet.

	* DbDataPermissionAttribute.cs: call base constructor.