(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.Data / System.Data.Common / ChangeLog
blob4c5c8223445070aaa3c77ab8ed9d150350f0805a
1 2004-10-01  Sureshkumar T  <tsureshkumar@novell.com>
3         * DbProviderFactories.cs: Implemented all the stubs. Added functionality for
4         getting available provider factories and creating a specified provider factory.
6         * DbProviderFactoriesConfigurationHandler.cs: Added functionality for handling
7         DbProviderFactories configuration section.
9         * DbProviderFactory.cs: Added protected constructor. SupportedClasses property
10         is made abstract.
12 2004-09-14  Sebastien Pouliot  <sebastien@ximian.com>
14         * DbDataPermission.cs: Implemented Intersect, IsSubsetOf and Union.
15         Implementation isn't complete as the restrictions seems to change the
16         expected results (breaking some rules like x.IsSubsetOf (x) == false).
17         Better (real-world) tests cases are required.
18         * PermissionHelper.cs: Fixed small differences between System.Data.dll 
19         validations wrt to mscorlib.dll (XML and PermissionState).
21 2004-09-13  Sebastien Pouliot  <sebastien@ximian.com>
23         * DbConnectionOptions.cs: New class for Fx 2.0. Partial implementation
24         to support new methods in DBDataPermission.
25         * DbConnectionString.cs: Updated class to split from/inherit 
26         DbConnectionOptions class.
27         * DbDataPermission.cs: Implemented Add, Clear, Copy, ToXml methods and
28         completed constructors.
29         * DbDataPermissionAttribute.cs: Completed/fixed class.
30         * PermissionHelper.cs: Helper methods to create permission classes.
32 2004-08-31 Francisco Figueiredo Jr. <fxjrlists@yahoo.com.br>
33         * DbDataAdapter.cs: Fix for out of memory exceptions when trying to fill a dataset with a query which doesn't return a resultset like insert, delete or update.
35 2004-07-21 Umadevi S <sumadevi@novell.com>
36         * DbDataRecord.cs - Fix for bug 58163. Return DBNull instead of null
38 2004-07-07 Umadevi S <sumadevi@novell.com>
39         * DataContainer.cs :CheckedforNull before calling the relavant setmethods in each of the
40                 SetItemForDataRecord method for the DateTimeClass
43 2004-06-24  Atsushi Enomoto  <atsushi@ximian.com>
45         * DataColumnMappingCollection.cs : fixed typo.
46         * DbDataAdapter.cs : column mappings were not filled.
48 2004-06-24  Atsushi Enomoto  <atsushi@ximian.com>
50         * DataTableMapping.cs : Clone() should also clone ColumnMappings.
52 2004-06-18 Umadevi S <sumadevi@novell.com>
53         * DataContainer.cs - CheckedforNull before calling the relavant setmethods in each of the 
54                 SetItemForDataRecord method for all the classes.
56 2004-06-17  Boris Kirzner  <borisk@mainsoft.com>
57         * RecordCache.cs : Added CopyRecord mathod that copies single record from one table to another.
59 2004-06-17  Boris Kirzner  <borisk@mainsoft.com>
60         * Datacontainer.cs : 
61           - Store and retreival of null and DBNull values reviewed.
62           - Added GetInt64 to support AutoIncrement of DataColumn.
63           - Added missing CopyValue method to BitDataContainer.
64           - Added FillValues method to propagate single value to whole container.
65         
66 2004-06-10 Umadevi S <sumadevi@novell.com>
67         * DataTableMappingCollection.cs - fixed nunit testcase errors
68         IndexOfDataSetTable method
70 2004-06-09 Umadevi S <sumadevi@novell.com>
71         * DataTableMappingCollection.cs - fixed nunit testcase errors
72         - Add, GetByDataSetTable,Insert, Remove, RemoveAt methods.
74 2004-06-09 Umadevi S <sumadevi@novell.com>
75         * DataColumnMappingCollection.cs - fixed nunit testcase errors
76         - GetByDataSetColumn,IndexOfDataSetColumn, Remove methods.      
78 2004-06-08 Umadevi S <sumadevi@novell.com>
79         * DataColumnMappingCollection.cs - fixed nunit testcase errors.
80         - remove, removeat, contains methods.
82 2004-06-04  Gert Driesen <drieseng@users.sourceforge.net>
84         * DataAdapter.cs: added missing protected ctor
85         * DbDataAdapter.cs: added stub for missing protected ctor
86         * DbDataPermission.cs: added stubs for missing protected
87         ctors, added stub for missing Clear method
89 2004-06-02  Gert Driesen <drieseng@users.sourceforge.net>
90        * DataColumnMappingCollection.cs: added missing attributes on
91        indexers
93 2004-05-27  Boris Kirzner  <borisk@mainsoft.com>
94         * DataContainer.cs : Bug fixes in BitDataContainer.get_Item and StringDataContainer.SetValue .
96 2004-05-20  Gert Driesen (drieseng@users.sourceforge.net)
98         *  DbDataPermissionAttribute.cs: change AllowMultiple and
99         Inherited to match .NET
101 2004-05-19  Boris Kirzner  <borisk@mainsoft.com>
102         * Datacontainer.cs : CompareValues reviewed. set_Item and get_Item of null and DBNull values in case of DataContainers
103         for primitive types reviewed. Added check for null values when reading from IDataRecord.
104         
105 2004-05-19  Boris Kirzner <borisk@mainsoft.com>
106         * RecordCache.cs - added. Each instance of record cache belongs to specific table
107         and manages pool of records ( indexes into data containers) to be used by data rows.
108         * DataContainer.cs - added. Provides implementation for data containers that holds data in arrays 
109         of primitives or objects. Each data container belongs to specific DataColumn.
110         * DbDataAdapter.cs - changes to complete data storage redesign. Bug fix in FillTable 
111         ( to fetch exact number of records required ).
112         
113 2004-05-13 Umadevi S (sumadevi@novell.com)
114         * DbDataPermissionAttribute.cs - Added KeyRestrictions property with a TODO tag
116 2004-05-09  Gert Driesen (drieseng@users.sourceforge.net)
117         * ComparerFactory.cs: marked internal
119 2003-04-26  Boris Kirzner <borisk@mainsoft.com>
120         * DataColumnMappingCollection.cs : Small fix in exception message thrown.
121           
122 2003-04-25  Boris Kirzner <borisk@mainsoft.com>
123         * DbDataAdapter.cs : Fixed bug in Fill :
124           - Reader can have empty results (fo example from UPDATE or DELETE).
125           - Reader can have results with no rows (SELECT that returns 0 rows but have columns)
126           - In FillTable - skip rows only once for each table.
127         
128 2003-04-14  Juraj Skripsky <juraj@hotfeet.ch>
129         * DbDataAdapter.cs : Refactoring of Fill. New private method
130         FillTable does most of the work now. Use int[] instead of
131         hashtable for mapping. Move creation of tableArray[] outside
132         of loop.
134 2004-03-12  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
136         * DbDataPermissionAttribute.cs: Added .Net 1.1 marks
137         * DataColumnMapping.cs: DO NOT USE the consts scheme if types can be referenced directly!
138         * DataTableMapping.cs: DO NOT USE the consts scheme if types can be referenced directly!
139         * DataColumnMappingConverter: Added stub
140         * DataTableMappingConverter: Added stub
142 2004-03-03  Eran Domb  <erand@miansoft.com>
143         
144         * ComparerFactory.cs : Added.
145         
146 2004-01-10  Atsushi Enomoto  <atsushi@ximian.com>
148         * DbDataPermission.cs : tiny fix to pass OleDbPermission.
150 2004-01-09  Atsushi Enomoto  <atsushi@ximian.com>
152         * DbDataPermission.cs : .ctor(PermissionState state) should not call
153           obsolete .ctor(state, allowBlankPassword). csc reports an error.
155 2003-12-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
157         * DbDataAdapter.cs: handle MissingShemaAction.AddWithKey, call
158         AcceptChanges in Update when a CommandBuilder is used and
159         correctly fill information about primary keys in FillSchema.
160         Patch from Sergei Malinin (smalinin@amurnet.ru).
162 2003-12-23  Tim Coleman <tim@timcoleman.com>
163         * DbConnectionString.cs:
164                 Some implementation
165         * DbProviderFactory.cs:
166                 Fix typo to make CLS compliant
168 2003-12-16  Jackson Harper <jackson@ximian.com>
170         * SchemaTableOptionalColumn.cs: Add to fix default build
171         
172 2003-12-16  Tim Coleman <tim@timcoleman.com>
173         * CatalogLocation.cs DbCommand.cs DbCommandBuilder.cs
174         * DbCommandOptionalFeatures.cs DbCommandSet.cs DbConnection.cs
175         * DbConnectionString.cs DbDataSourceEnumerator.cs
176         * DbDataUpdatableRecord.cs DbParameter.cs DbParameterCollection.cs
177         * DbProviderConfigurationHandler.cs DbProviderFactories.cs
178         * DbProviderFactoriesConfigurationHandler.cs DbProviderFactory.cs
179         * DbProviderSupportedClasses.cs DbTable.cs DbTransaction.cs
180         * GroupByBehavior.cs IdentifierCase.cs SchemaLocation.cs
181         * SchemaTableColumn.cs:
182                 New stubs added for .NET 1.2
183         * DataAdapter.cs DataColumnMapping.cs DataColumnMappingCollection.cs
184         * DataTableMapping.cs DataTableMappingCollection.cs DbDataAdapter.cs
185         * DbDataPermission.cs DbDataPermissionAttribute.cs DbDataRecord.cs
186         * FieldNameLookup.cs SchemaInfo.cs:
187                 Changes made for .NET 1.2
189 2003-10-22  Eran Domb  <erand@miansoft.com>
190         * DbDataAdapter.cs : Check if there is mapping to avoid exception.
192 2003-11-26  Tim Coleman <tim@timcoleman.com>
193         * DbDataReader.cs: Add new stub class
195 2003-11-23  Pedro Martínez Juliá  <yoros@wanadoo.es>
197         * DbDataAdapter.cs: Call command dispose in self dispose method. We
198         need to dispose the connections and other stuff stored in the
199         commands.
201 2003-11-10  Pedro Martínez Juliá  <yoros@wanadoo.es>
203         * DataColumnMappingCollection.cs: Fix a missing exception when the
204         required mapping is not in the collection. MS.NET throws an
205         exception there.
207 2003-10-22  Eran Domb  <erand@miansoft.com>
209         * DbDataAdapter.cs (Fill): add only the mapped column to the dataTable (not all columns of dataReader).\r
210             Also closing the dataReader if an exception is thrown.\r
211         (Fill): the same as above.\r
212         (SetupSchema): in now return string (the table name). \r
213         (GetFillParameters): fix a bug.\r
214         (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.\r
215         (Update): first open the connection if needed. Catch an exception of the ExecuteQuery.
216         
218 2003-09-30  Duncan Mak  <duncan@ximian.com>
220         Patch from Eran Domb <eran@mainsoft.com>.
221         
222         * DbDataAdapter.cs (Fill): Fixed an Exception from being thrown.
224 2003-09-25  Duncan Mak  <duncan@ximian.com>
226         * DbDataAdapter.cs (Fill): Patch from Eran Domb, <eran@mainsoft.com>.
227         Fixes a possible NullReferenceException, more details here:
229         http://lists.ximian.com/archives/public/mono-devel-list/2003-September/002116.html
231 2003-09-21  eran <erand@mainsoft.com>
233         * DbDataRecord.cs: The method
234         System.Data.Common.DbDataRecord.GetValues(object[] values) did not
235         put the values of the DbDataRecord into values parameter.
237 2003-08-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
239         * DbDataAdapter.cs: provide a Type for ToArray to avoid invalid cast
240         exception. Thanks to Mark Easton <measton@tebiki.co.uk>.
242 2003-07-31  Duncan Mak  <duncan@ximian.com>
244         * DataAdapter.cs (CloneInternals): Mark with ObsoleteAttribute for
245         NET_1_1.
247 2003-03-21  Alan Tam <Tam@SiuLung.com>
249         * DbDataAdapter.cs: Update now uses correct DataRowVersion
250         when accessing the data.
252 2003-03-17  Aleksey Demakov <avd@openlinksw.com>
254         * DbDataAdapter.cs: BuildSchema now uses ColumnName instead
255         of BaseColumnName (bug #39830) for DataColumn names.
256         BaseTableName is no longer taken into account as well.
258 2003-02-28  Aleksey Demakov <avd@openlinksw.com>
260         * DbDataAdapter.cs: Update (DataSet) updates the default
261         table only.
263 2003-02-25  Alan Tam <Tam@SiuLung.com>
264         
265         * DbDataAdapter.cs: Added support for filling when schema is present.
266         Fixed incorrect behavior when ColumnMapping is present
267         when more than one fields have the same name. Implemented Dispose.
268         Fixed error when there is no ColumnMapping at all.
269         Still have some problems in finding the correct TableMapping
270         because the SourceTable name is not present in BuildSchema
272 2003-02-24  Aleksey Demakov <avd@openlinksw.com>
274         * DbDataAdapter.cs: The original code might pass a null DataTableMapping
275         value which is then used to create a RowUpdatingEventArgs
276         instance. So RowUpdatingEvent handler (for instance
277         CommandBuilder) could get null DataTableMapping which
278         might be unexpected. The patch makes sure that a non-null
279         DataTableMapping is passed.
281 2003-01-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
283         * DbEnumerator.cs: why does the runtime throw an invalid cast here? The
284         object is an Int16... Gotta fill a bug report and when fixed undo this
285         patch.
287 2003-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
289         * DbDataRecord.cs: return DbNull.Value in GetValue () if value is null.
291 2002-10-31  Daniel Morgan <danmorg@sc.rr.com>
293         * SchemaInfo.cs: added missing properties to fix mcs build
295 2002-05-05  Miguel de Icaza  <miguel@ximian.com>
297         * DataTableMapping.cs, DataTableMappingCollection.cs: comment out
298         interfaces we do not implement yet.
300         * DbDataAdapter.cs: Stub IEnumerable, comment out interfaces
301         we do not implement yet.
303         * DbDataPermissionAttribute.cs: call base constructor.