New test.
[mono.git] / mcs / class / System.Data / System.Data.Common / ChangeLog
1 2010-03-26  Veerapuram Varadhan  <vvaradhan@novell.com>
2
3     ** Fixes #564833/580736
4     * DbDataAdapter.cs (*Command): Fix for .NET compatibility which
5     supports both type of adapters with/without discrete command
6     instances.
7                 
8 2009-10-28  Veerapuram Varadhan  <vvaradhan@novell.com>
9
10         ** Fixes #385028/#385029
11         * DbCommandBuilder.cs (CreateInsertCommand): Workaround for inserting 
12         DEFAULT values to non-null-columns.
13         (GetInsertCommand): New overload added to handle above workaround.
14         (set_DataAdapter): Register for the RowUpdatingEventHandlers.
15          
16 2009-10-14  Jonathan Pryor  <jpryor@novell.com>
17
18         * DbConnection.cs: Throw NotImplementedException fom
19           DbConnection.DbProviderFactory, as DbProviderFactories isn't
20           included in the MonoTouch profile.
21
22 2009-07-30  Veerapuram Varadhan  <vvaradhan@novell.com>
23
24         * DbDataAdapter.cs (IDbDataAdapter.get_*Command): For non 2.0 profile, do not 
25         implement these properties and related changes.
26         
27 2009-07-30  Veerapuram Varadhan  <vvaradhan@novell.com>
28         
29         * DbDataAdapter.cs (set_DeleteCommand): Code cleanup.
30         
31 2009-07-29  Veerapuram Varadhan  <vvaradhan@novell.com>
32         
33         * DbDataAdapter.cs (*Command properties): Don't call IDbDataAdapter.*Command, 
34         as provider specific DbDataAdapters would have its own implementation.
35         
36 2009-07-27  Veerapuram Varadhan  <vvaradhan@novell.com>
37
38         * DbCommandBuilder.cs (CreateUpdateCommand): Don't set Nullable 
39         property "Original_*" fields.
40         
41 2009-07-24  Veerapuram Varadhan  <vvaradhan@novell.com>
42         
43         * DbCommandBuilder.cs (Create*Command): Fill up the missing pieces from 
44         SqlCommandBuilder version of Create*Commands that fixes the failing tests.
45         
46 2009-07-24  Veerapuram Varadhan  <vvaradhan@novell.com>
47         
48         * DbCommandBuilder.cs (CreateDeleteCommand, CreateUpdateCommand): Add the 
49         nullcheck-param into the respective command's parameter list.  Fixes 
50         build breaks.  Individual provider's CommandBuilder classes from 2.0 
51         profile onwards use the base version of methods to maintain these commands.
52         (Get*Command): Cleanup code duplication
53         * DbDataAdapter (Update): Use SourceColumnNullMapping property to handle 
54         nullcheckparams.  Fixes #522624.  Patch by 
55         Gert Driesen  <drieseng@users.sourceforge.net>.
56         
57 2009-07-15  Veerapuram Varadhan  <vvaradhan@novell.com>
58
59         ** Part of fix for #325464
60         * DbParameter.cs (FrameworkDbType, DbTypeMapping, SystemType): New internal properties 
61         required to convert between DbType/FrameworkType/SystemType.
62         
63 2009-05-10  Marek Habersack  <mhabersack@novell.com>
64
65         * DbConnection.cs: implemented the DbProviderFactory property
66
67 2009-03-31  Veerapuram Varadhan  <vvaradhan@novell.com>
68
69         * Fixes rest of #480377
70         * DataContainer.cs (GetContainerData, GetExplicitValue): Added to handle cases 
71         where passed type overloads an explicit operator for conversion of values.
72         
73 2009-01-03  Gert Driesen  <drieseng@users.sourceforge.net>
74
75         * DbCommandBuilder.cs (QuoteIdentifier): Throw NotSupportedException.
76         * DbDataAdapter.cs (Update): Add row causing concurrency violation
77         to DBConcurrencyException.
78
79 2008-12-30  Raja R Harinath  <harinath@hurrynot.org>
80
81         Mildly rewrite duplicate-inferring logic.
82         * Index.cs (IndexDuplicateState): Remove.
83         (_hasDuplicates): Remove.  Replace by ...
84         (know_have_duplicates, know_no_duplicates): ... these.
85
86 2008-12-30  Gert Driesen  <drieseng@users.sourceforge.net>
87
88         * DbCommandBuilder.cs: When CatalogSeparator or SchemaSeparator are
89         not set (or explicitly set to null or empty string), then return
90         default separator character. Added value check for CatalogLocation and
91         ConflictOption. Removed regions.
92
93 2008-12-30  Gert Driesen  <drieseng@users.sourceforge.net>
94
95         * DbCommandBuilder.cs: Fixed default value for ConflicOption.
96
97 2008-12-30  Gert Driesen  <drieseng@users.sourceforge.net>
98
99         * DbCommandBuilder.cs: Return a zero-length string when QuotePrefix or
100         QuoteSuffix are not set (or are set to null). Changing QuotePrefix or
101         QuoteSuffix after a command has been generated should result in an
102         InvalidOperationException.
103         * DbConnectionStringBuilder.cs: Added support for ODBC rules. Major
104         rewrite fixing many compatibility issues, and improving support for
105         connectionstring formats/characters.
106
107 2008-11-25  Atsushi Enomoto  <atsushi@ximian.com>
108
109         * DbDataRecord.cs : it is abstract, so create different impl. class.
110         * DbEnumerator.cs : use above.
111
112 2008-11-17  Raja R Harinath  <harinath@hurrynot.org>
113
114         Avoid allocating empty arrays.
115         * Index.cs (empty): New empty array constant.
116         (Reset): Initialize '_array' to 'empty'.
117         (RebuildIndex): Don't allocate array if it will be empty.
118         (FindAllIndexes): Use 'empty' instead of 'new int [0]'.
119
120 2008-11-17  Raja R Harinath  <harinath@hurrynot.org>
121
122         * Index.cs: Remove use of Array and Size properties by taking
123         advantage of the invariant that _array is never null.
124         (EnsureArray): Remove.
125         (Array): Remove.
126
127 2008-11-17  Raja R Harinath  <harinath@hurrynot.org>
128
129         * RecordCache.cs: Reduce some extraneous nesting.
130
131 2008-10-07  Daniel Morgan  <monodanmorg@yahoo.com>
132
133         * DbConnectionStringBuilder.cs: fix setting and getting
134         the ConnectionString property
135
136 2008-09-16  Veerapuram Varadhan  <vvaradhan@novell.com>
137
138         ** Fixes#421336 - Patch provided by <christian_hoff@gmx.net>    
139         DbCommandBuilder.cs: Several scenarios leading to exceptions when
140         creating the update, insert and delete commands: 
141
142         1. The "IsExpression" column in the column schema table can also
143         be DBNull which is equivalent to "false" but the DBCommandBuilder
144         does not check for DBNull and simply tries to cast it into a bool,
145         which will fail.
146
147         2. The commands do not get refreshed after a call to
148         UpdateSchema() because they are not set to NULL. This has the
149         consequence that empty commands(created with CreateNewCommand())
150         are returned afterwards.
151
152         3. Multiple parameters with the same name are generated if the
153         parameter names should be named after the columns.
154         
155 2008-09-05  Raja R Harinath  <harinath@hurrynot.org>
156
157         * DataContainer.cs (*.ZeroOut): Rename from the somewhat unclear
158         'SetDefaultValue'.
159         (IsNull): Use a more idiomatic form of the short-circuit.
160         (*.SetValue): Convert to one-liners.
161
162 2008-08-08  Raja R Harinath  <harinath@hurrynot.org>
163
164         Reduce massive code duplication
165         * DataContainer.cs (DataContainer): Rename from AbstractDataContainer.
166         Introduce new 'protected abstract' members to encapsulate
167         type-specific handling, and move all common code here.
168         (DataContainer.Create): Rename from CreateInstance.
169
170 2008-07-06  Sebastien Pouliot  <sebastien@ximian.com> 
171
172         * DbDataReader.cs: Replace a few Type.GetType by typeof
173         [Found using Gendarme AvoidTypeGetTypeForConstantStringsRule]
174
175 2008-07-03  Marek Habersack  <mhabersack@novell.com>
176
177         * DataAdapter.cs (BuildSchema): Check for null.
178         
179 2008-07-01  Rodrigo Kumpera  <rkumpera@novell.com>
180
181         * RecordCache.cs: Kill some foreach loops.
182
183 2008-04-21  Gert Driesen  <drieseng@users.sourceforge.net>
184
185         * DataColumnMappingCollection.cs: Modified argument names to match
186         MS. Code formatting.
187         * DataTableMappingCollection.cs: Modified argument names to match MS.
188         Code formatting.
189
190 2008-03-23  Gert Driesen  <drieseng@users.sourceforge.net>
191
192         * DbDataAdapter.cs: Corcompare fixes and code formatting.
193         * DbDataRecord.cs: Corcompare fixes and code formatting.
194         * DataColumnMappingCollection.cs: Corcompare fixes and code formatting.
195         * RowUpdatedEventArgs.cs: Corcompare fixes and code formatting.
196         * DbParameterCollection.cs: Corcompare fixes and code formatting.
197
198 2007-11-15  Atsushi Enomoto  <atsushi@ximian.com>
199
200         * DbProviderFactoriesConfigurationHandler.cs : Create() now takes
201           parent DataSet into consideration i.e. it now merges items in
202           different configurations. Fixed bug #323708.
203
204 2007-10-21  Gert Driesen  <drieseng@users.sourceforge.net>
205
206         * DbDataPermissionAttribute.cs: In KeyRestrictionBehavior, reuse
207         ExceptionHelper.CheckEnumValue.
208         * ExceptionHelper.cs: Use same exception message for both 1.0 and 2.0.
209         * Index.cs: Fixed compiler warnings. Code formatting.
210
211 2007-10-20  Gert Driesen  <drieseng@users.sourceforge.net>
212
213         * DbDataAdapter.cs: Implemented UpdateBatchSize setter.
214         * DataAdapter.cs: In FillLoadOption setter, ensure value is valid.
215         Modified MissingMappingAction and MissingSchemaAction setters to use
216         ExceptionHelper.CheckEnumValue to validate value. Spaces to tabs and
217         code formatting.
218         * ExceptionHelper.cs: Added CheckEnumValue method and modified
219         InvalidEnumValueException method to return AORE on 2.0 profile. Added
220         ConnectionClosed method that returns an InvalidOperationException.
221
222 2007-10-19  Gert Driesen  <drieseng@users.sourceforge.net>
223
224         * DbTransaction.cs: Do not perform a rollback in Dispose (bool).
225         Leaves it up to deriving classes to override Dispose (bool) and
226         perform a rollback if necessary. Fixes bug #325397. Code formatting.
227         * ExceptionHelper.cs: Added TransactionNotUsable method that constructs
228         an InvalidOperationException to be thrown by IDbTransaction
229         implementations when the transaction is no longer open.
230
231 2007-09-27  Nagappan A <anagappan@novell.com> 
232
233         * DbDataAdapter.cs: Added MonoTODO in appropriate place.
234         
235         * DbCommandBuilder.cs (initializeCommand): Implemented missing API.
236
237 2007-09-25  Nagappan A  <anagappan@novell.com>
238
239         * DbConnection.cs: 2.0 attribute fixes.
240
241         * DataColumnMapping.cs: 2.0 attribute fixes.
242
243         * DbParameterCollection.cs: Code alignment.
244
245         * DataAdapter.cs: 2.0 attribute fixes.
246
247         * DataTableMapping.cs: 2.0 attribute fixes.
248
249         * RowUpdatingEventArgs.cs (BaseCommand): Code alignment.
250
251 2007-09-24  Konstantin Triger <kostat@mainsoft.com>
252
253         * DbEnumerator.cs, DbDataRecord.cs: refactoring.
254         * DbDataRecord.cs: GetValue() should return null instead of DBNull.
255
256 2007-08-10  Nagappan A  <anagappan@novell.com>
257
258         * DbDataAdapter.cs (Fill): Fixed method signature.
259
260 2007-07-26  Nagappan A  <anagappan@novell.com>
261
262         * DbConnection.cs: Removed bogus TODO.
263
264 2007-07-22  Nagappan A  <anagappan@novell.com>
265
266         * DbConnection.cs: 2.0 missing features.
267
268         * DbDataAdapter.cs: 2.0 missing features.
269
270 2007-06-30  Gert Driesen  <drieseng@users.sourceforge.net>
271
272         * DbDataAdapter.cs: Marked ICloneable.Clone obsolete to match MS.
273
274 2007-06-21  Nagappan A  <anagappan@novell.com>
275
276         * DbConnectionStringBuilder.cs (Init): Modified the dictionary to
277         use StringComparer.InvariantCultureIgnoreCase.
278         (Add, ContainsKey): Checks whether argument is null or empty string.
279
280 2007-05-08  Adar Wesley <adarw@mainsoft.com>
281
282         * DbProviderFactory.cs: minor refactoring for throwing exceptions
283
284 2007-04-30  Marek Habersack  <mhabersack@novell.com>
285
286         * DbProviderFactories.cs: throw the same exception MS.NET does.
287
288 2007-03-03  Gert Driesen  <drieseng@users.sourceforge.net>
289
290         * DbProviderFactoriesConfigurationHandler.cs: Added support for
291         clear node.
292
293 2007-03-03  Gert driesen  <drieseng@users.sourceforge.net>
294
295         * ConnectionStringsSectionHandler.cs: Removed since the 2.0 config
296         API is in place.
297         * DbProviderFactoriesConfigurationHandler.cs: Fixed name of DataSet
298         to match MS. Removed SupportedClasses column since this is no longer
299         part of 2.0 profile (removed during beta). Throw 
300         ConfigurationErrorsException for unrecognized elements. Mark methods
301         private, and refactor them. Added FIXMEs for missing checks for
302         unrecognized attributes.
303         * DbProviderFactories.cs: Marked constants internal. Replaced spaces
304         with tabs. Use ConfigurationManager.GetSection instead of deprecated
305         ConfigurationSettings.GetConfig.
306
307 2007-02-26  Atsushi Enomoto  <atsushi@ximian.com>
308
309         * DbProviderFactoriesConfigurationHandler.cs : there was a config
310           test that used to be broken.
311
312 2007-02-26  Atsushi Enomoto  <atsushi@ximian.com>
313
314         * DbProviderFactoriesConfigurationHandler.cs : remove "support"
315           attribute check, as it does not really do anything.
316
317 2007-02-19  Atsushi Enomoto  <atsushi@ximian.com>
318
319         * DbProviderFactoriesConfigurationHandler.cs : "support" attribute is
320           optional. Fixed bug #80894.
321
322 2007-02-09  Nagappan A  <anagappan@novell.com>
323
324         * DbProviderFactory.cs: Derived class has to implement all the
325         methods of this class.
326
327         * DbProviderFactoriesConfigurationHandler.cs (Create): Removed
328         bogus MonoTODO
329
330 2007-01-08  Nagappan A  <anagappan@novell.com>
331
332         * DataTableMappingCollection.cs (AddRange):  Implemented missing
333         NET 2.0 API.
334
335         * DbConnection.cs (GetSchema): Implemented missing NET 2.0 API,
336         based on SqlClient implementation.
337
338         * DbConnectionStringBuilder.cs (AppendKeyValuePair): Implemented
339         missing API.
340
341         * DbDataReader.cs (GetData): Implemented missing API.
342         (GetDbDataReader): Implemented missing API.
343
344         * DbCommandBuilder.cs (BuildCache, BuildInformation)
345         (IncludedInInsert, IncludedInUpdate, IncludedInWhereClause)
346         (CreateDeleteCommand, CreateInsertCommand, CreateNewCommand)
347         (CreateUpdateCommand, CreateParameter): Added private methods.
348         (QuotedTableName, GetQuotedString, CatalogLocation)
349         (CatalogSeparator, ConflictOption, DataAdapter, QuotePrefix)
350         (QuoteSuffix, SchemaSeparator): Implemented public properties.
351         (SourceCommand): Implemented private property.
352         (Dispose, RowUpdatingHandler): Implemented protected methods.
353         (GetDeleteCommand, GetInsertCommand, GetUpdateCommand)
354         (QuoteIdentifier, UnquoteIdentifier, RefreshSchema): Implemented
355         public methods.
356
357         * DbProviderFactory.cs: Removed MonoTODO's as the derived class
358         has to implement all the methods in this class.
359
360         * DataAdapter.cs (Fill): Implemented missing method.
361
362         * DbDataAdapter.cs (FillCommandBehavior): Implemented property.
363
364 2006-12-20  Nagappan A  <anagappan@novell.com>
365
366         * DataColumnMapping.cs (GetDataColumnBySchemaAction): Implemented
367         2.0 profile method.
368
369         * DbDataReader.cs: Removed TODO's where ever the implementation is
370         available.
371
372         * RowUpdatedEventArgs.cs: Removed TODO's where ever the
373         implementation is available.
374
375         * DataAdapter.cs (FillInternal): Moved from DbDataAdapater.cs to
376         here.
377         (BuildSchema): Moved from DbDataAdapter.cs.
378         (FillTable): Moved from DbDataAdapter.cs.
379         (OnFillErrorInternal): Implemented new internal method to raise an
380         event.
381         (SetupSchema): Moved from DbDataAdapter.cs.
382         (FillInterl): Moved common implementation from DbDataAdapter.cs.
383         Removed TODO's where ever the implementation is available.
384
385         * DbDataAdapter.cs (OnRowUpdated): Implemented protected method.
386         (OnRowUpdating): Implemented protected method.
387         (CreateFillErrorEvent): Moved to DataAdapter.cs.
388         (Fill): Moved common implementation to DataAdapter.cs.
389         (FillTable): Moved to DataAdapter.cs.
390         (BuildSchema): Moved to DataAdapter.cs.
391         (SetupSchema): Moved to DataAdapter.cs.
392
393 2006-12-11  Miguel de Icaza  <miguel@novell.com>
394
395         * DataAdapter.cs: Removed TODO, NotSupportedException was the
396         correct implementation. 
397
398 2006-11-28  Nagappan A  <anagappan@novell.com>
399
400         * DbDataAdapter.cs: Removed bogus MonoTODOs
401
402         * DataAdapter.cs: Removed bogus MonoTODOs
403         
404 2006-11-15  Nagappan A  <anagappan@novell.com>
405
406         * DbDataAdapter.cs (FillFromReader): Implemented missing API to
407         handle FillErrorEventHandler
408         (DataAdapter): Implemented missing .NET 2.0 function
409         (GetDeleteCommand): Returns DbDataAdapter deleteCommand internal
410         variable.
411         (GetInsertCommand): Returns DbDataAdapter insertCommand internal
412         variable.
413         (GetUpdateCommand): Returns DbDataAdapter updateCommand internal
414         variable.
415
416 2006-09-06  Konstantin Triger <kostat@mainsoft.com>
417
418         * DbDataAdapter.cs: added basic implementation for some 2.0 features.
419
420 2006-08-24  Vladimir Krasnov <vladimirk@mainsoft.com>
421
422         * DbProviderFactories.cs: added TARGET_JVM block to not supported
423         functionality
424
425 2006-08-06  Konstantin Triger <kostat@mainsoft.com>
426
427         * DbDataReader.cs: DbDataReader.Dipose(bool) - implemented.
428
429 2006-07-17  Senganal T <tsenganal@novell.com>
430
431         * Index.cs :
432                 - GetAllRows : Added. Returns all the rows in the current
433                 index.
434                 - GetDistinctRows :Added. Returns all the distinct rows (based
435                 in Key Columns) in the index.
436                 
437 2006-07-13  Senganal T <tsenganal@novell.com>
438
439         * SchemaInfo.cs DbDataAdapter.cs DbConnectionOptions.cs DbParameter.cs 
440         DbMetaDataColumnNames.cs DbTransaction.cs DataTableMapping.cs DataAdapter.cs 
441         FieldNameLookup.cs DbDataRecord.cs DataColumnMappingCollection.cs DbCommand.cs 
442         DbDataPermission.cs DbProviderFactory.cs DbCommandBuilder.cs DbConnectionString.cs 
443         RowUpdatedEventArgs.cs DbDataReader.cs DbConnectionStringBuilder.cs DbConnection.cs 
444         DataTableMappingCollection.cs :
445                 2.0 Api fixes
446
447 2006-06-15  Senganal T <tsenganal@novell.com>
448
449         * Key.cs : 
450                 -Equals : Check for Equality of Sort Order too.
451                 
452 2006-04-07  Senganal T <tsenganal@novell.com>
453
454         * DbDataAdapter.cs :
455                 * Update () : If the Update/Delete Query has a null check,
456                 then populate the parameter value correctly.
457
458 2006-03-20  Senganal T <tsenganal@novell.com>
459
460         * DataAdapter.cs :
461                 - Ctor () : Set Default Values for DataAdapter members
462         * DbDataAdapter.cs : 
463                 - Update () : Call row.AcceptChanges only if AcceptChangesDuringUpdate
464                 is true. Fixes bug #77776
465
466 2006-03-09  Senganal T <tsenganal@novell.com>
467         
468         * Index.cs :
469                 - Update () : Add the new record in the correct position
470
471 2006-03-07  Senganal T <tsenganal@novell.com>
472
473         * Key.cs : 
474                 Reverted the changes from the earlier patch.
475
476 2006-02-22  Senganal T <tsenganal@novell.com>
477
478         * DbDataAdapter.cs :
479                 - FillTable : Move BeginLoadData, EndLoadData outside the loop. Also,
480                 move EndLoadData outsidet try,catch block. FillError is only for errors
481                 occuring during loading the data into datatable.
482         * Key.cs :
483                 - Set Default value of RowStateFilter to (CurrentRos | OriginalRows).
484                 - ContainsVersion : If RowStateFilter is set to default value, return true
485                 for Modified Rows as they can contain Default/Original versions.
486
487 2006-02-18  Raja R Harinath  <harinath@gmail.com>
488
489         * DbConnectionStringBuilder.cs (ICollection.CopyTo): Use
490         _dictionary, not 'this' in cast.
491
492 2006-02-17  Chris Toshok  <toshok@ximian.com>
493
494         * DbDataAdapter.cs: more 2.0 cleanup.
495
496 2006-02-17  Chris Toshok  <toshok@ximian.com>
497
498         * DataAdapter.cs, DataColumnMappingCollection.cs,
499         DataColumnMapping.cs, DataTableMappingCollection.cs,
500         DataTableMapping.cs, DbCommandBuilder.cs,
501         DbConnectionStringBuilder.cs, DbParameterCollection.cs,
502         DbParameter.cs: pretty major attribute work.
503         
504 2006-02-17  Chris Toshok  <toshok@ximian.com>
505
506         * DbProviderFactory.cs: remove two methods.  and mark the
507         DbProviderSupportedClasses ctor as internal since it's not part of
508         the public api.
509
510         * DbTable.cs: remove this class from 2.0 build.. leave it for the
511         JVM build, I guess?
512
513         * RowUpdatingEventArgs.cs: this class isn't abstract in 2.0.
514
515         * RowUpdatedEventArgs.cs: this class isn't abstract in 2.0.
516
517         * SupportedJoinOperators.cs: new 2.0 enum.
518
519         * CatalogLocation.cs: fix enum values.
520
521         * GroupByBehavior.cs: same.
522
523         * IdentifierCase.cs: same.
524
525         * SchemaTableColumn.cs: class is static, not sealed.  and add
526         missing elements.
527         
528         * SchemaTableOptionalColumn.cs: same.
529         
530         * DbDataReader.cs: oops, add back in VisibleFieldCount (i missed
531         it in the corcompare output), add EditorBrowsable attributes all
532         over the place, and fix some method signatures.
533
534         * DbDataUpdatableRecord.cs: remove this 2.0 file.
535
536 2006-02-17  Chris Toshok  <toshok@ximian.com>
537
538         * DbDataReader.cs: remove VisibleFieldCount attribute, and remove
539         IDataReader2 and IDataRecord2 interfaces.
540         
541 2006-02-13  Senganal T  <tsenganal@novell.com>
542
543         * DbDataAdapter.cs :
544                 - FillSchema  : 
545                         - Add table to schema only if MissingSchemaAction is not Ignore
546                         Add schema to table if MissingSchemaAction is set to either of
547                         Add or AddWithKey
548                 - BuildSchema :
549                         - Set the Schema values only if MissingSchemaAction is set to
550                         AddWithKey
551
552 2006-01-31  Senganal T  <tsenganal@novell.com>
553
554         * DbDataAdapter.cs :
555                 - Corrected an error in the prev checkin.. Fixes #77415
556
557 2006-01-27  Senganal T  <tsenganal@novell.com>
558
559         * DbDataAdapter.cs :
560                 - Modified schema population to follow MissingSchemaAction and MissingMappingAction
561                 - Add a column to the Primary Key only if its not a hidden key
562                 - Added some argument checks
563                 - Removed some redundant code
564         * DataAdapter :
565                 - Added argument checks
566         * ExceptionHelper :
567                 - Added InvalidEnumException , a helper function to print error msg
568                 
569 2006-01-11 Boris Kirzner <borisk@mainsoft.com>
570         * Index.cs: removed redundant call to RebuildIndex() in constructor.
571
572 2005-12-12  Konstantin Triger <kostat@mainsoft.com>
573
574         * Key.cs: Added ContainsVersion function, refactoring.
575         * Index.cs: Fixed Reset() to be ready for Update() calls.
576            Otherwise the index can be rebuilt with new values inside the
577            Update() call itself.
578            Fixed FindIndexExact(), Update(), Delete().
579
580 2005-11-22  Konstantin Triger <kostat@mainsoft.com>
581
582         * DbProviderFactory.cs: TARGET_JVM ifdef.
583
584 2005-11-21  Senganal T <tsenganal@novell.com>
585
586         * DbDataAdapter.cs
587         * DbParameter.cs
588         * DbTransaction.cs
589         * DbTable.cs
590         * DbProviderFactories.cs
591         * DbException.cs
592         * DbProviderFactory.cs
593         * DbCommandBuilder.cs
594         * DbDataReader.cs
595         * DbParameterCollection.cs
596                 - Added stubs and other changes for ADO.NET 2.0 compatibility.
597         * DbMetaDataCollectionNames.cs (new file)
598                 - Added DbMetaDataCollectionNames Enumeration 
599
600 2005-10-24  Konstantin Triger <kostat@mainsoft.com>
601
602         * DataContainer.cs: removed extra type validation for object container
603
604 2005-10-14  Senganal T  <tsenganal@novell.com>
605
606         * DbDataAdapter.cs : 
607                 - BuildSchema() : Set the value of DataColumn Property 'AllowDBNull'
608                 as returned by database. Fixes bug#76433. 
609
610 2005-09-21 Boris Kirzner <borisk@mainsoft.com>
611         * Index.cs: 
612                 - Rebuild index immediately after construction.
613                 - Do not add records if they do not padd key filtration.
614                 - Do not attempt to remove records if the are not in the index.
615         * Key.cs:
616                 - Added HasFilter property, CanContain and DependsOn methods.
617                 - Equals() uses filter expression comparison.           
618
619 2005-09-07 Boris Kirzner <borisk@mainsoft.com>
620         * DataContainer.cs: Do not convert value if container type 
621         is System.Object.
622
623 2005-08-08  Gert Driesen  <drieseng@users.sourceforge.net>
624
625         * DbTypes.cs: Marked internal to fix public API.
626
627 2005-08-05  Sureshkumar T  <tsureshkumar@novell.com>
628
629         * DbDataAdapter.cs:
630         - Update (): set parameter values only after getting the
631         appropriate command from command builder. Close reader only if it
632         is not closed before. Use parameter's SourceVersion. Whitespace
633         corrections to comply with standard.
634
635 2005-07-22  Sureshkumar T  <tsureshkumar@novell.com>
636
637         * DataColumnMappingCollection.cs: updated attributes & attribute
638         descriptions to match with masterinfos.
639
640 2005-07-15  Sureshkumar T  <tsureshkumar@novell.com>
641
642         * DataTableMappingCollection.cs: GetTableMappingBySchemaAction:
643         meaningful error message if mapping is missing.
644
645         * DbDataAdapter.cs: Update: meaningful message if table is missing.
646
647 2005-06-22  Sureshkumar T  <tsureshkumar@novell.com>
648
649         * Index.cs: Remove : length for Array.Copy (a, i+1, a, i, length -
650         (i+1)) corrected.
651
652 2005-06-21  Sureshkumar T  <tsureshkumar@novell.com>
653
654         * DbConnectionStringBuilder.cs: Implemented method for parsing
655         connection string through "ConnectionString" property.
656
657         * DbConnectionStringBuilderHelper.cs: Helper class to provide
658         conversion between string=>.net type mapping for connection string
659         builders. The idea is to use between other providers (odbc) as
660         well.
661
662 2005-05-29 Boris Kirzner <borisk@mainsoft.com>
663         * DbCommand.cs - added #ifdef NET_2_0 on DbCommandOptionalFeatures (not used in TARGET_JVM). 
664         * ExceptionHelper.cs - removed java references. Exceptions created on formatted text messages. Code styling fixes.
665         * DbParameterCollection.cs - implemented indexer properties.
666         * DbDataAdapter.cs - delagate exceptions creating to ExceptionHelper.
667         
668 2005-05-25 Konstantin Triger <kostat@mainsoft.com>
669
670       * DataContainer.cs: Correcting the order - first the record is queried whether the value it contains is null, and only if not the value is fetched
671
672 2005-05-20 Umadevi S <sumadevi@novell.com>
673         * Added file DbProviderSpecificTypePropertyAttribute.cs
674
675 2005-05-19 Umadevi S <sumadevi@novell.com>
676
677         * RowUpdatingEventArgs.cs - added BaseCommand property for net 2.0
678
679 2005-05-18 Konstantin Triger <kostat@mainsoft.com>
680
681         * DbDataAdapter.cs: Initialize the schema values to defaults if the schema does not contain the information
682
683 2005-05-16  Sureshkumar T  <tsureshkumar@novell.com>
684
685         * RecordCache.cs: quick fix to make build 2.0 profile (follow up
686         for check in 2005-05-16).
687
688 2005-05-16 Konstantin Triger <kostat@mainsoft.com>
689
690         * Index.cs: validation that the updated row belongs to the index
691
692 2005-05-02 Konstantin Triger <kostat@mainsoft.com>
693
694         * DataContainer.cs: 
695                 Added CharDataContainer, SByteDataContainer, UInt16DataContainer, UInt32DataContainer, UInt64DataContainer, DateTimeDataContainer, DecimalDataContainer
696                 SetItemFromDataRecord: Changed to work with ISafeDataRecord or through GetValue to enable conversion
697                 return DBNull.Value when the stored value is null
698         
699         * DbDataAdapter.cs:
700                 Ensure correct order for LoadDataRow
701                 Fixing schema creation
702                 Use NewRowArray API
703         
704         * DbEnumerator.cs:
705                 LoadSchema: Retrieve needed fields only
706         
707         * RecordCache.cs:
708                 Added Rows-to-Records mapping
709                 Added ReadIDataRecord method for correct handling of default/auto increment values
710         
711         * Added Index.cs: Index implementation
712         * Added Key.cs: Index descriptor implementation
713
714
715 2005-04-27  Sureshkumar T  <tsureshkumar@novell.com>
716
717         * DbDataReader.cs: Added static method to construct the schema
718         table with default schema. Could be reused in many places.
719
720 2005-04-22  Sureshkumar T  <tsureshkumar@novell.com>
721
722         * DbDataAdapter.cs: Moved FillTable and BuildSchema as static
723         methods as they are not operating on the current instance. This
724         could be reused to fill any table from a data reader.
725
726         * RecordCache.cs: While disposing records, make sure that the
727         record is not already disposed. i.e. to make sure later the same
728         record is not reused. Implemented a static method to compare two
729         version of records in a container.
730
731 2005-04-18  Sureshkumar T  <tsureshkumar@novell.com>
732
733         * DataAdapter.cs: Implemenetd OnFillError handler.
734
735         * DbDataAdapter.cs: BuildSchema (): the table to be filled might
736         contain few additional columns as well. so mapping length should
737         be columns' length + fields' length.
738
739 2005-03-24  Sureshkumar T  <tsureshkumar@novell.com>
740
741         * DbDataAdapter.cs: Update: If  SourceColumn is null, do not set
742         value for the parameter.
743
744 2005-05-25 Umadevi S <sumadevi@novell.com>
745         * Added DbException.cs
746
747 2005-03-23  Sureshkumar T  <tsureshkumar@novell.com>
748
749         * DbDataAdapter.cs: For Update, disable ReadOnly constraint
750         temporarily before updating the row. Info from Ingo Bauersachs.
751         SkipAllRemainingRows should also skip current row (msdn).
752
753 2005-03-22  Sureshkumar T  <tsureshkumar@novell.com>
754
755         * DbDataAdapter.cs: Update (): update the rows based on the
756         UpdateRowSource property. Process further based on the
757         RowUpdatedEvent handler argument's Status property.
758         Fixes bug #73587. Thanks to mono@rankweg.ch (Ingo Bauersachs) for
759         bug report and patch.
760
761         * RowUpdatedEventArgs.cs: if custom error is not set, throw a
762         default error.
763
764 2005-03-01  Sureshkumar T  <tsureshkumar@novell.com>
765
766         * ConnectionStringsSectionHandler.cs: Added. configuration section
767         handler for section "connectionStrings". This handler is a ad hoc
768         solution till the new configuration API is available in mono.
769
770 2005-02-04  Sureshkumar T  <tsureshkumar@novell.com>
771
772         * DbDataAdapter.cs (Update ()) :
773         - Check for one return result set and map the values back to
774           datatable.
775         - Check for output & return value parameters and update the value
776           back to mapped column
777         - check for recordsAffected only after closing the reader.
778
779 2005-02-02  Sureshkumar T  <tsureshkumar@novell.com>
780
781         * DbConnection.cs: Implement Dispose pattern.
782
783 2005-01-25  Atsushi Enomoto  <atsushi@ximian.com>
784
785         * DbDataPermission.cs : Empty.Union(Empty) is Empty.
786
787 2005-01-14  Atsushi Enomoto  <atsushi@ximian.com>
788
789         * DbDataPermissionAttribute.cs, PermissionHelper.cs :
790           fixed some incompatible type of exception between 2.0 and 1.x.
791         * DataContainer.cs :
792           Wrap exceptions thrown by SetValue() within ArgumentException.
793
794 2004-12-10  Sureshkumar T  <tsureshkumar@novell.com>
795
796         * DbDataAdapter.cs (BuildSchema): Add the primary key schema iff
797         MissingSchemaAction is set to AddWithKey. Also, Add auto increment
798         value from the source table. fixes bug #67757 and #69110.
799
800 2004-11-24  Sureshkumar T  <tsureshkumar@novell.com>
801
802         * DbProviderSupportedClasses.cs: Added correct enum values.
803         * DbConnection.cs: Missing virtual method EnlistTransaction Added.
804         * DbCommand.cs: Implemented ProviderFactory base factory methods.
805
806 2004-11-22  Sureshkumar T  <tsureshkumar@novell.com>
807
808         * DbConnectionStringBuilder.cs: Class for helping creation of db
809         connection strings added.
810
811 2004-10-01  Sureshkumar T  <tsureshkumar@novell.com>
812
813         * DbProviderFactories.cs: Implemented all the stubs. Added functionality for
814         getting available provider factories and creating a specified provider factory.
815
816         * DbProviderFactoriesConfigurationHandler.cs: Added functionality for handling
817         DbProviderFactories configuration section.
818
819         * DbProviderFactory.cs: Added protected constructor. SupportedClasses property
820         is made abstract.
821
822 2004-09-14  Sebastien Pouliot  <sebastien@ximian.com>
823
824         * DbDataPermission.cs: Implemented Intersect, IsSubsetOf and Union.
825         Implementation isn't complete as the restrictions seems to change the
826         expected results (breaking some rules like x.IsSubsetOf (x) == false).
827         Better (real-world) tests cases are required.
828         * PermissionHelper.cs: Fixed small differences between System.Data.dll 
829         validations wrt to mscorlib.dll (XML and PermissionState).
830
831 2004-09-13  Sebastien Pouliot  <sebastien@ximian.com>
832
833         * DbConnectionOptions.cs: New class for Fx 2.0. Partial implementation
834         to support new methods in DBDataPermission.
835         * DbConnectionString.cs: Updated class to split from/inherit 
836         DbConnectionOptions class.
837         * DbDataPermission.cs: Implemented Add, Clear, Copy, ToXml methods and
838         completed constructors.
839         * DbDataPermissionAttribute.cs: Completed/fixed class.
840         * PermissionHelper.cs: Helper methods to create permission classes.
841
842 2004-08-31 Francisco Figueiredo Jr. <fxjrlists@yahoo.com.br>
843         * 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.
844
845 2004-07-21 Umadevi S <sumadevi@novell.com>
846         * DbDataRecord.cs - Fix for bug 58163. Return DBNull instead of null
847
848 2004-07-07 Umadevi S <sumadevi@novell.com>
849         * DataContainer.cs :CheckedforNull before calling the relavant setmethods in each of the
850                 SetItemForDataRecord method for the DateTimeClass
851
852
853 2004-06-24  Atsushi Enomoto  <atsushi@ximian.com>
854
855         * DataColumnMappingCollection.cs : fixed typo.
856         * DbDataAdapter.cs : column mappings were not filled.
857
858 2004-06-24  Atsushi Enomoto  <atsushi@ximian.com>
859
860         * DataTableMapping.cs : Clone() should also clone ColumnMappings.
861
862 2004-06-18 Umadevi S <sumadevi@novell.com>
863         * DataContainer.cs - CheckedforNull before calling the relavant setmethods in each of the 
864                 SetItemForDataRecord method for all the classes.
865
866 2004-06-17  Boris Kirzner  <borisk@mainsoft.com>
867         * RecordCache.cs : Added CopyRecord mathod that copies single record from one table to another.
868
869 2004-06-17  Boris Kirzner  <borisk@mainsoft.com>
870         * Datacontainer.cs : 
871           - Store and retreival of null and DBNull values reviewed.
872           - Added GetInt64 to support AutoIncrement of DataColumn.
873           - Added missing CopyValue method to BitDataContainer.
874           - Added FillValues method to propagate single value to whole container.
875         
876 2004-06-10 Umadevi S <sumadevi@novell.com>
877         * DataTableMappingCollection.cs - fixed nunit testcase errors
878         IndexOfDataSetTable method
879
880 2004-06-09 Umadevi S <sumadevi@novell.com>
881         * DataTableMappingCollection.cs - fixed nunit testcase errors
882         - Add, GetByDataSetTable,Insert, Remove, RemoveAt methods.
883
884 2004-06-09 Umadevi S <sumadevi@novell.com>
885         * DataColumnMappingCollection.cs - fixed nunit testcase errors
886         - GetByDataSetColumn,IndexOfDataSetColumn, Remove methods.      
887
888 2004-06-08 Umadevi S <sumadevi@novell.com>
889         * DataColumnMappingCollection.cs - fixed nunit testcase errors.
890         - remove, removeat, contains methods.
891
892 2004-06-04  Gert Driesen <drieseng@users.sourceforge.net>
893
894         * DataAdapter.cs: added missing protected ctor
895         * DbDataAdapter.cs: added stub for missing protected ctor
896         * DbDataPermission.cs: added stubs for missing protected
897         ctors, added stub for missing Clear method
898
899 2004-06-02  Gert Driesen <drieseng@users.sourceforge.net>
900        * DataColumnMappingCollection.cs: added missing attributes on
901        indexers
902
903 2004-05-27  Boris Kirzner  <borisk@mainsoft.com>
904         * DataContainer.cs : Bug fixes in BitDataContainer.get_Item and StringDataContainer.SetValue .
905
906 2004-05-20  Gert Driesen (drieseng@users.sourceforge.net)
907
908         *  DbDataPermissionAttribute.cs: change AllowMultiple and
909         Inherited to match .NET
910
911 2004-05-19  Boris Kirzner  <borisk@mainsoft.com>
912         * Datacontainer.cs : CompareValues reviewed. set_Item and get_Item of null and DBNull values in case of DataContainers
913         for primitive types reviewed. Added check for null values when reading from IDataRecord.
914         
915 2004-05-19  Boris Kirzner <borisk@mainsoft.com>
916         * RecordCache.cs - added. Each instance of record cache belongs to specific table
917         and manages pool of records ( indexes into data containers) to be used by data rows.
918         * DataContainer.cs - added. Provides implementation for data containers that holds data in arrays 
919         of primitives or objects. Each data container belongs to specific DataColumn.
920         * DbDataAdapter.cs - changes to complete data storage redesign. Bug fix in FillTable 
921         ( to fetch exact number of records required ).
922         
923 2004-05-13 Umadevi S (sumadevi@novell.com)
924         * DbDataPermissionAttribute.cs - Added KeyRestrictions property with a TODO tag
925
926 2004-05-09  Gert Driesen (drieseng@users.sourceforge.net)
927         * ComparerFactory.cs: marked internal
928
929 2003-04-26  Boris Kirzner <borisk@mainsoft.com>
930         * DataColumnMappingCollection.cs : Small fix in exception message thrown.
931           
932 2003-04-25  Boris Kirzner <borisk@mainsoft.com>
933         * DbDataAdapter.cs : Fixed bug in Fill :
934           - Reader can have empty results (fo example from UPDATE or DELETE).
935           - Reader can have results with no rows (SELECT that returns 0 rows but have columns)
936           - In FillTable - skip rows only once for each table.
937         
938 2003-04-14  Juraj Skripsky <juraj@hotfeet.ch>
939         * DbDataAdapter.cs : Refactoring of Fill. New private method
940         FillTable does most of the work now. Use int[] instead of
941         hashtable for mapping. Move creation of tableArray[] outside
942         of loop.
943
944 2004-03-12  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
945
946         * DbDataPermissionAttribute.cs: Added .Net 1.1 marks
947         * DataColumnMapping.cs: DO NOT USE the consts scheme if types can be referenced directly!
948         * DataTableMapping.cs: DO NOT USE the consts scheme if types can be referenced directly!
949         * DataColumnMappingConverter: Added stub
950         * DataTableMappingConverter: Added stub
951
952 2004-03-03  Eran Domb  <erand@miansoft.com>
953         
954         * ComparerFactory.cs : Added.
955         
956 2004-01-10  Atsushi Enomoto  <atsushi@ximian.com>
957
958         * DbDataPermission.cs : tiny fix to pass OleDbPermission.
959
960 2004-01-09  Atsushi Enomoto  <atsushi@ximian.com>
961
962         * DbDataPermission.cs : .ctor(PermissionState state) should not call
963           obsolete .ctor(state, allowBlankPassword). csc reports an error.
964
965 2003-12-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
966
967         * DbDataAdapter.cs: handle MissingShemaAction.AddWithKey, call
968         AcceptChanges in Update when a CommandBuilder is used and
969         correctly fill information about primary keys in FillSchema.
970         Patch from Sergei Malinin (smalinin@amurnet.ru).
971
972 2003-12-23  Tim Coleman <tim@timcoleman.com>
973         * DbConnectionString.cs:
974                 Some implementation
975         * DbProviderFactory.cs:
976                 Fix typo to make CLS compliant
977
978 2003-12-16  Jackson Harper <jackson@ximian.com>
979
980         * SchemaTableOptionalColumn.cs: Add to fix default build
981         
982 2003-12-16  Tim Coleman <tim@timcoleman.com>
983         * CatalogLocation.cs DbCommand.cs DbCommandBuilder.cs
984         * DbCommandOptionalFeatures.cs DbCommandSet.cs DbConnection.cs
985         * DbConnectionString.cs DbDataSourceEnumerator.cs
986         * DbDataUpdatableRecord.cs DbParameter.cs DbParameterCollection.cs
987         * DbProviderConfigurationHandler.cs DbProviderFactories.cs
988         * DbProviderFactoriesConfigurationHandler.cs DbProviderFactory.cs
989         * DbProviderSupportedClasses.cs DbTable.cs DbTransaction.cs
990         * GroupByBehavior.cs IdentifierCase.cs SchemaLocation.cs
991         * SchemaTableColumn.cs:
992                 New stubs added for .NET 1.2
993         * DataAdapter.cs DataColumnMapping.cs DataColumnMappingCollection.cs
994         * DataTableMapping.cs DataTableMappingCollection.cs DbDataAdapter.cs
995         * DbDataPermission.cs DbDataPermissionAttribute.cs DbDataRecord.cs
996         * FieldNameLookup.cs SchemaInfo.cs:
997                 Changes made for .NET 1.2
998
999 2003-10-22  Eran Domb  <erand@miansoft.com>
1000         * DbDataAdapter.cs : Check if there is mapping to avoid exception.
1001
1002 2003-11-26  Tim Coleman <tim@timcoleman.com>
1003         * DbDataReader.cs: Add new stub class
1004
1005 2003-11-23  Pedro Martínez Juliá  <yoros@wanadoo.es>
1006
1007         * DbDataAdapter.cs: Call command dispose in self dispose method. We
1008         need to dispose the connections and other stuff stored in the
1009         commands.
1010
1011 2003-11-10  Pedro Martínez Juliá  <yoros@wanadoo.es>
1012
1013         * DataColumnMappingCollection.cs: Fix a missing exception when the
1014         required mapping is not in the collection. MS.NET throws an
1015         exception there.
1016
1017 2003-10-22  Eran Domb  <erand@miansoft.com>
1018
1019         * DbDataAdapter.cs (Fill): add only the mapped column to the dataTable (not all columns of dataReader).
1020             Also closing the dataReader if an exception is thrown.
1021         (Fill): the same as above.
1022         (SetupSchema): in now return string (the table name). 
1023         (GetFillParameters): fix a bug.
1024         (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.
1025         (Update): first open the connection if needed. Catch an exception of the ExecuteQuery.
1026         
1027
1028 2003-09-30  Duncan Mak  <duncan@ximian.com>
1029
1030         Patch from Eran Domb <eran@mainsoft.com>.
1031         
1032         * DbDataAdapter.cs (Fill): Fixed an Exception from being thrown.
1033
1034 2003-09-25  Duncan Mak  <duncan@ximian.com>
1035
1036         * DbDataAdapter.cs (Fill): Patch from Eran Domb, <eran@mainsoft.com>.
1037         Fixes a possible NullReferenceException, more details here:
1038
1039         http://lists.ximian.com/archives/public/mono-devel-list/2003-September/002116.html
1040
1041 2003-09-21  eran <erand@mainsoft.com>
1042
1043         * DbDataRecord.cs: The method
1044         System.Data.Common.DbDataRecord.GetValues(object[] values) did not
1045         put the values of the DbDataRecord into values parameter.
1046
1047 2003-08-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1048
1049         * DbDataAdapter.cs: provide a Type for ToArray to avoid invalid cast
1050         exception. Thanks to Mark Easton <measton@tebiki.co.uk>.
1051
1052 2003-07-31  Duncan Mak  <duncan@ximian.com>
1053
1054         * DataAdapter.cs (CloneInternals): Mark with ObsoleteAttribute for
1055         NET_1_1.
1056
1057 2003-03-21  Alan Tam <Tam@SiuLung.com>
1058
1059         * DbDataAdapter.cs: Update now uses correct DataRowVersion
1060         when accessing the data.
1061
1062 2003-03-17  Aleksey Demakov <avd@openlinksw.com>
1063
1064         * DbDataAdapter.cs: BuildSchema now uses ColumnName instead
1065         of BaseColumnName (bug #39830) for DataColumn names.
1066         BaseTableName is no longer taken into account as well.
1067
1068 2003-02-28  Aleksey Demakov <avd@openlinksw.com>
1069
1070         * DbDataAdapter.cs: Update (DataSet) updates the default
1071         table only.
1072
1073 2003-02-25  Alan Tam <Tam@SiuLung.com>
1074         
1075         * DbDataAdapter.cs: Added support for filling when schema is present.
1076         Fixed incorrect behavior when ColumnMapping is present
1077         when more than one fields have the same name. Implemented Dispose.
1078         Fixed error when there is no ColumnMapping at all.
1079         Still have some problems in finding the correct TableMapping
1080         because the SourceTable name is not present in BuildSchema
1081
1082 2003-02-24  Aleksey Demakov <avd@openlinksw.com>
1083
1084         * DbDataAdapter.cs: The original code might pass a null DataTableMapping
1085         value which is then used to create a RowUpdatingEventArgs
1086         instance. So RowUpdatingEvent handler (for instance
1087         CommandBuilder) could get null DataTableMapping which
1088         might be unexpected. The patch makes sure that a non-null
1089         DataTableMapping is passed.
1090
1091 2003-01-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1092
1093         * DbEnumerator.cs: why does the runtime throw an invalid cast here? The
1094         object is an Int16... Gotta fill a bug report and when fixed undo this
1095         patch.
1096
1097 2003-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1098
1099         * DbDataRecord.cs: return DbNull.Value in GetValue () if value is null.
1100
1101 2002-10-31  Daniel Morgan <danmorg@sc.rr.com>
1102
1103         * SchemaInfo.cs: added missing properties to fix mcs build
1104
1105 2002-05-05  Miguel de Icaza  <miguel@ximian.com>
1106
1107         * DataTableMapping.cs, DataTableMappingCollection.cs: comment out
1108         interfaces we do not implement yet.
1109
1110         * DbDataAdapter.cs: Stub IEnumerable, comment out interfaces
1111         we do not implement yet.
1112
1113         * DbDataPermissionAttribute.cs: call base constructor.
1114