2007-02-19 Atsushi Enomoto * DbProviderFactoriesConfigurationHandler.cs : "support" attribute is optional. Fixed bug #80894. 2007-02-09 Nagappan A * DbProviderFactory.cs: Derived class has to implement all the methods of this class. * DbProviderFactoriesConfigurationHandler.cs (Create): Removed bogus MonoTODO 2007-01-08 Nagappan A * DataTableMappingCollection.cs (AddRange): Implemented missing NET 2.0 API. * DbConnection.cs (GetSchema): Implemented missing NET 2.0 API, based on SqlClient implementation. * DbConnectionStringBuilder.cs (AppendKeyValuePair): Implemented missing API. * DbDataReader.cs (GetData): Implemented missing API. (GetDbDataReader): Implemented missing API. * DbCommandBuilder.cs (BuildCache, BuildInformation) (IncludedInInsert, IncludedInUpdate, IncludedInWhereClause) (CreateDeleteCommand, CreateInsertCommand, CreateNewCommand) (CreateUpdateCommand, CreateParameter): Added private methods. (QuotedTableName, GetQuotedString, CatalogLocation) (CatalogSeparator, ConflictOption, DataAdapter, QuotePrefix) (QuoteSuffix, SchemaSeparator): Implemented public properties. (SourceCommand): Implemented private property. (Dispose, RowUpdatingHandler): Implemented protected methods. (GetDeleteCommand, GetInsertCommand, GetUpdateCommand) (QuoteIdentifier, UnquoteIdentifier, RefreshSchema): Implemented public methods. * DbProviderFactory.cs: Removed MonoTODO's as the derived class has to implement all the methods in this class. * DataAdapter.cs (Fill): Implemented missing method. * DbDataAdapter.cs (FillCommandBehavior): Implemented property. 2006-12-20 Nagappan A * DataColumnMapping.cs (GetDataColumnBySchemaAction): Implemented 2.0 profile method. * DbDataReader.cs: Removed TODO's where ever the implementation is available. * RowUpdatedEventArgs.cs: Removed TODO's where ever the implementation is available. * DataAdapter.cs (FillInternal): Moved from DbDataAdapater.cs to here. (BuildSchema): Moved from DbDataAdapter.cs. (FillTable): Moved from DbDataAdapter.cs. (OnFillErrorInternal): Implemented new internal method to raise an event. (SetupSchema): Moved from DbDataAdapter.cs. (FillInterl): Moved common implementation from DbDataAdapter.cs. Removed TODO's where ever the implementation is available. * DbDataAdapter.cs (OnRowUpdated): Implemented protected method. (OnRowUpdating): Implemented protected method. (CreateFillErrorEvent): Moved to DataAdapter.cs. (Fill): Moved common implementation to DataAdapter.cs. (FillTable): Moved to DataAdapter.cs. (BuildSchema): Moved to DataAdapter.cs. (SetupSchema): Moved to DataAdapter.cs. 2006-12-11 Miguel de Icaza * DataAdapter.cs: Removed TODO, NotSupportedException was the correct implementation. 2006-11-28 Nagappan A * DbDataAdapter.cs: Removed bogus MonoTODOs * DataAdapter.cs: Removed bogus MonoTODOs 2006-11-15 Nagappan A * DbDataAdapter.cs (FillFromReader): Implemented missing API to handle FillErrorEventHandler (DataAdapter): Implemented missing .NET 2.0 function (GetDeleteCommand): Returns DbDataAdapter deleteCommand internal variable. (GetInsertCommand): Returns DbDataAdapter insertCommand internal variable. (GetUpdateCommand): Returns DbDataAdapter updateCommand internal variable. 2006-09-06 Konstantin Triger * DbDataAdapter.cs: added basic implementation for some 2.0 features. 2006-08-24 Vladimir Krasnov * DbProviderFactories.cs: added TARGET_JVM block to not supported functionality 2006-08-06 Konstantin Triger * DbDataReader.cs: DbDataReader.Dipose(bool) - implemented. 2006-07-17 Senganal T * Index.cs : - GetAllRows : Added. Returns all the rows in the current index. - GetDistinctRows :Added. Returns all the distinct rows (based in Key Columns) in the index. 2006-07-13 Senganal T * SchemaInfo.cs DbDataAdapter.cs DbConnectionOptions.cs DbParameter.cs DbMetaDataColumnNames.cs DbTransaction.cs DataTableMapping.cs DataAdapter.cs FieldNameLookup.cs DbDataRecord.cs DataColumnMappingCollection.cs DbCommand.cs DbDataPermission.cs DbProviderFactory.cs DbCommandBuilder.cs DbConnectionString.cs RowUpdatedEventArgs.cs DbDataReader.cs DbConnectionStringBuilder.cs DbConnection.cs DataTableMappingCollection.cs : 2.0 Api fixes 2006-06-15 Senganal T * Key.cs : -Equals : Check for Equality of Sort Order too. 2006-04-07 Senganal T * DbDataAdapter.cs : * Update () : If the Update/Delete Query has a null check, then populate the parameter value correctly. 2006-03-20 Senganal T * DataAdapter.cs : - Ctor () : Set Default Values for DataAdapter members * DbDataAdapter.cs : - Update () : Call row.AcceptChanges only if AcceptChangesDuringUpdate is true. Fixes bug #77776 2006-03-09 Senganal T * Index.cs : - Update () : Add the new record in the correct position 2006-03-07 Senganal T * Key.cs : Reverted the changes from the earlier patch. 2006-02-22 Senganal T * DbDataAdapter.cs : - FillTable : Move BeginLoadData, EndLoadData outside the loop. Also, move EndLoadData outsidet try,catch block. FillError is only for errors occuring during loading the data into datatable. * Key.cs : - Set Default value of RowStateFilter to (CurrentRos | OriginalRows). - ContainsVersion : If RowStateFilter is set to default value, return true for Modified Rows as they can contain Default/Original versions. 2006-02-18 Raja R Harinath * DbConnectionStringBuilder.cs (ICollection.CopyTo): Use _dictionary, not 'this' in cast. 2006-02-17 Chris Toshok * DbDataAdapter.cs: more 2.0 cleanup. 2006-02-17 Chris Toshok * DataAdapter.cs, DataColumnMappingCollection.cs, DataColumnMapping.cs, DataTableMappingCollection.cs, DataTableMapping.cs, DbCommandBuilder.cs, DbConnectionStringBuilder.cs, DbParameterCollection.cs, DbParameter.cs: pretty major attribute work. 2006-02-17 Chris Toshok * DbProviderFactory.cs: remove two methods. and mark the DbProviderSupportedClasses ctor as internal since it's not part of the public api. * DbTable.cs: remove this class from 2.0 build.. leave it for the JVM build, I guess? * RowUpdatingEventArgs.cs: this class isn't abstract in 2.0. * RowUpdatedEventArgs.cs: this class isn't abstract in 2.0. * SupportedJoinOperators.cs: new 2.0 enum. * CatalogLocation.cs: fix enum values. * GroupByBehavior.cs: same. * IdentifierCase.cs: same. * SchemaTableColumn.cs: class is static, not sealed. and add missing elements. * SchemaTableOptionalColumn.cs: same. * DbDataReader.cs: oops, add back in VisibleFieldCount (i missed it in the corcompare output), add EditorBrowsable attributes all over the place, and fix some method signatures. * DbDataUpdatableRecord.cs: remove this 2.0 file. 2006-02-17 Chris Toshok * DbDataReader.cs: remove VisibleFieldCount attribute, and remove IDataReader2 and IDataRecord2 interfaces. 2006-02-13 Senganal T * DbDataAdapter.cs : - FillSchema : - Add table to schema only if MissingSchemaAction is not Ignore Add schema to table if MissingSchemaAction is set to either of Add or AddWithKey - BuildSchema : - Set the Schema values only if MissingSchemaAction is set to AddWithKey 2006-01-31 Senganal T * DbDataAdapter.cs : - Corrected an error in the prev checkin.. Fixes #77415 2006-01-27 Senganal T * DbDataAdapter.cs : - Modified schema population to follow MissingSchemaAction and MissingMappingAction - Add a column to the Primary Key only if its not a hidden key - Added some argument checks - Removed some redundant code * DataAdapter : - Added argument checks * ExceptionHelper : - Added InvalidEnumException , a helper function to print error msg 2006-01-11 Boris Kirzner * Index.cs: removed redundant call to RebuildIndex() in constructor. 2005-12-12 Konstantin Triger * Key.cs: Added ContainsVersion function, refactoring. * Index.cs: Fixed Reset() to be ready for Update() calls. Otherwise the index can be rebuilt with new values inside the Update() call itself. Fixed FindIndexExact(), Update(), Delete(). 2005-11-22 Konstantin Triger * DbProviderFactory.cs: TARGET_JVM ifdef. 2005-11-21 Senganal T * DbDataAdapter.cs * DbParameter.cs * DbTransaction.cs * DbTable.cs * DbProviderFactories.cs * DbException.cs * DbProviderFactory.cs * DbCommandBuilder.cs * DbDataReader.cs * DbParameterCollection.cs - Added stubs and other changes for ADO.NET 2.0 compatibility. * DbMetaDataCollectionNames.cs (new file) - Added DbMetaDataCollectionNames Enumeration 2005-10-24 Konstantin Triger * DataContainer.cs: removed extra type validation for object container 2005-10-14 Senganal T * DbDataAdapter.cs : - BuildSchema() : Set the value of DataColumn Property 'AllowDBNull' as returned by database. Fixes bug#76433. 2005-09-21 Boris Kirzner * Index.cs: - Rebuild index immediately after construction. - Do not add records if they do not padd key filtration. - Do not attempt to remove records if the are not in the index. * Key.cs: - Added HasFilter property, CanContain and DependsOn methods. - Equals() uses filter expression comparison. 2005-09-07 Boris Kirzner * DataContainer.cs: Do not convert value if container type is System.Object. 2005-08-08 Gert Driesen * DbTypes.cs: Marked internal to fix public API. 2005-08-05 Sureshkumar T * DbDataAdapter.cs: - Update (): set parameter values only after getting the appropriate command from command builder. Close reader only if it is not closed before. Use parameter's SourceVersion. Whitespace corrections to comply with standard. 2005-07-22 Sureshkumar T * DataColumnMappingCollection.cs: updated attributes & attribute descriptions to match with masterinfos. 2005-07-15 Sureshkumar T * DataTableMappingCollection.cs: GetTableMappingBySchemaAction: meaningful error message if mapping is missing. * DbDataAdapter.cs: Update: meaningful message if table is missing. 2005-06-22 Sureshkumar T * Index.cs: Remove : length for Array.Copy (a, i+1, a, i, length - (i+1)) corrected. 2005-06-21 Sureshkumar T * DbConnectionStringBuilder.cs: Implemented method for parsing connection string through "ConnectionString" property. * DbConnectionStringBuilderHelper.cs: Helper class to provide conversion between string=>.net type mapping for connection string builders. The idea is to use between other providers (odbc) as well. 2005-05-29 Boris Kirzner * DbCommand.cs - added #ifdef NET_2_0 on DbCommandOptionalFeatures (not used in TARGET_JVM). * ExceptionHelper.cs - removed java references. Exceptions created on formatted text messages. Code styling fixes. * DbParameterCollection.cs - implemented indexer properties. * DbDataAdapter.cs - delagate exceptions creating to ExceptionHelper. 2005-05-25 Konstantin Triger * 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 2005-05-20 Umadevi S * Added file DbProviderSpecificTypePropertyAttribute.cs 2005-05-19 Umadevi S * RowUpdatingEventArgs.cs - added BaseCommand property for net 2.0 2005-05-18 Konstantin Triger * DbDataAdapter.cs: Initialize the schema values to defaults if the schema does not contain the information 2005-05-16 Sureshkumar T * RecordCache.cs: quick fix to make build 2.0 profile (follow up for check in 2005-05-16). 2005-05-16 Konstantin Triger * Index.cs: validation that the updated row belongs to the index 2005-05-02 Konstantin Triger * DataContainer.cs: Added CharDataContainer, SByteDataContainer, UInt16DataContainer, UInt32DataContainer, UInt64DataContainer, DateTimeDataContainer, DecimalDataContainer SetItemFromDataRecord: Changed to work with ISafeDataRecord or through GetValue to enable conversion return DBNull.Value when the stored value is null * DbDataAdapter.cs: Ensure correct order for LoadDataRow Fixing schema creation Use NewRowArray API * DbEnumerator.cs: LoadSchema: Retrieve needed fields only * RecordCache.cs: Added Rows-to-Records mapping Added ReadIDataRecord method for correct handling of default/auto increment values * Added Index.cs: Index implementation * Added Key.cs: Index descriptor implementation 2005-04-27 Sureshkumar T * DbDataReader.cs: Added static method to construct the schema table with default schema. Could be reused in many places. 2005-04-22 Sureshkumar T * DbDataAdapter.cs: Moved FillTable and BuildSchema as static methods as they are not operating on the current instance. This could be reused to fill any table from a data reader. * RecordCache.cs: While disposing records, make sure that the record is not already disposed. i.e. to make sure later the same record is not reused. Implemented a static method to compare two version of records in a container. 2005-04-18 Sureshkumar T * DataAdapter.cs: Implemenetd OnFillError handler. * DbDataAdapter.cs: BuildSchema (): the table to be filled might contain few additional columns as well. so mapping length should be columns' length + fields' length. 2005-03-24 Sureshkumar T * DbDataAdapter.cs: Update: If SourceColumn is null, do not set value for the parameter. 2005-05-25 Umadevi S * Added DbException.cs 2005-03-23 Sureshkumar T * DbDataAdapter.cs: For Update, disable ReadOnly constraint temporarily before updating the row. Info from Ingo Bauersachs. SkipAllRemainingRows should also skip current row (msdn). 2005-03-22 Sureshkumar T * DbDataAdapter.cs: Update (): update the rows based on the UpdateRowSource property. Process further based on the RowUpdatedEvent handler argument's Status property. Fixes bug #73587. Thanks to mono@rankweg.ch (Ingo Bauersachs) for bug report and patch. * RowUpdatedEventArgs.cs: if custom error is not set, throw a default error. 2005-03-01 Sureshkumar T * ConnectionStringsSectionHandler.cs: Added. configuration section handler for section "connectionStrings". This handler is a ad hoc solution till the new configuration API is available in mono. 2005-02-04 Sureshkumar T * DbDataAdapter.cs (Update ()) : - Check for one return result set and map the values back to datatable. - Check for output & return value parameters and update the value back to mapped column - check for recordsAffected only after closing the reader. 2005-02-02 Sureshkumar T * DbConnection.cs: Implement Dispose pattern. 2005-01-25 Atsushi Enomoto * DbDataPermission.cs : Empty.Union(Empty) is Empty. 2005-01-14 Atsushi Enomoto * DbDataPermissionAttribute.cs, PermissionHelper.cs : fixed some incompatible type of exception between 2.0 and 1.x. * DataContainer.cs : Wrap exceptions thrown by SetValue() within ArgumentException. 2004-12-10 Sureshkumar T * DbDataAdapter.cs (BuildSchema): Add the primary key schema iff MissingSchemaAction is set to AddWithKey. Also, Add auto increment value from the source table. fixes bug #67757 and #69110. 2004-11-24 Sureshkumar T * DbProviderSupportedClasses.cs: Added correct enum values. * DbConnection.cs: Missing virtual method EnlistTransaction Added. * DbCommand.cs: Implemented ProviderFactory base factory methods. 2004-11-22 Sureshkumar T * DbConnectionStringBuilder.cs: Class for helping creation of db connection strings added. 2004-10-01 Sureshkumar T * DbProviderFactories.cs: Implemented all the stubs. Added functionality for getting available provider factories and creating a specified provider factory. * DbProviderFactoriesConfigurationHandler.cs: Added functionality for handling DbProviderFactories configuration section. * DbProviderFactory.cs: Added protected constructor. SupportedClasses property is made abstract. 2004-09-14 Sebastien Pouliot * DbDataPermission.cs: Implemented Intersect, IsSubsetOf and Union. Implementation isn't complete as the restrictions seems to change the expected results (breaking some rules like x.IsSubsetOf (x) == false). Better (real-world) tests cases are required. * PermissionHelper.cs: Fixed small differences between System.Data.dll validations wrt to mscorlib.dll (XML and PermissionState). 2004-09-13 Sebastien Pouliot * DbConnectionOptions.cs: New class for Fx 2.0. Partial implementation to support new methods in DBDataPermission. * DbConnectionString.cs: Updated class to split from/inherit DbConnectionOptions class. * DbDataPermission.cs: Implemented Add, Clear, Copy, ToXml methods and completed constructors. * DbDataPermissionAttribute.cs: Completed/fixed class. * PermissionHelper.cs: Helper methods to create permission classes. 2004-08-31 Francisco Figueiredo Jr. * 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. 2004-07-21 Umadevi S * DbDataRecord.cs - Fix for bug 58163. Return DBNull instead of null 2004-07-07 Umadevi S * DataContainer.cs :CheckedforNull before calling the relavant setmethods in each of the SetItemForDataRecord method for the DateTimeClass 2004-06-24 Atsushi Enomoto * DataColumnMappingCollection.cs : fixed typo. * DbDataAdapter.cs : column mappings were not filled. 2004-06-24 Atsushi Enomoto * DataTableMapping.cs : Clone() should also clone ColumnMappings. 2004-06-18 Umadevi S * DataContainer.cs - CheckedforNull before calling the relavant setmethods in each of the SetItemForDataRecord method for all the classes. 2004-06-17 Boris Kirzner * RecordCache.cs : Added CopyRecord mathod that copies single record from one table to another. 2004-06-17 Boris Kirzner * 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 * DataTableMappingCollection.cs - fixed nunit testcase errors IndexOfDataSetTable method 2004-06-09 Umadevi S * DataTableMappingCollection.cs - fixed nunit testcase errors - Add, GetByDataSetTable,Insert, Remove, RemoveAt methods. 2004-06-09 Umadevi S * DataColumnMappingCollection.cs - fixed nunit testcase errors - GetByDataSetColumn,IndexOfDataSetColumn, Remove methods. 2004-06-08 Umadevi S * DataColumnMappingCollection.cs - fixed nunit testcase errors. - remove, removeat, contains methods. 2004-06-04 Gert Driesen * 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 * DataColumnMappingCollection.cs: added missing attributes on indexers 2004-05-27 Boris Kirzner * 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 * 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 * 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 * DataColumnMappingCollection.cs : Small fix in exception message thrown. 2003-04-25 Boris Kirzner * 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 * 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 * 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 * ComparerFactory.cs : Added. 2004-01-10 Atsushi Enomoto * DbDataPermission.cs : tiny fix to pass OleDbPermission. 2004-01-09 Atsushi Enomoto * DbDataPermission.cs : .ctor(PermissionState state) should not call obsolete .ctor(state, allowBlankPassword). csc reports an error. 2003-12-30 Gonzalo Paniagua Javier * 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 * DbConnectionString.cs: Some implementation * DbProviderFactory.cs: Fix typo to make CLS compliant 2003-12-16 Jackson Harper * SchemaTableOptionalColumn.cs: Add to fix default build 2003-12-16 Tim Coleman * 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 * DbDataAdapter.cs : Check if there is mapping to avoid exception. 2003-11-26 Tim Coleman * DbDataReader.cs: Add new stub class 2003-11-23 Pedro Martínez Juliá * 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á * 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 * 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 Patch from Eran Domb . * DbDataAdapter.cs (Fill): Fixed an Exception from being thrown. 2003-09-25 Duncan Mak * DbDataAdapter.cs (Fill): Patch from Eran Domb, . Fixes a possible NullReferenceException, more details here: http://lists.ximian.com/archives/public/mono-devel-list/2003-September/002116.html 2003-09-21 eran * 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 * DbDataAdapter.cs: provide a Type for ToArray to avoid invalid cast exception. Thanks to Mark Easton . 2003-07-31 Duncan Mak * DataAdapter.cs (CloneInternals): Mark with ObsoleteAttribute for NET_1_1. 2003-03-21 Alan Tam * DbDataAdapter.cs: Update now uses correct DataRowVersion when accessing the data. 2003-03-17 Aleksey Demakov * 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 * DbDataAdapter.cs: Update (DataSet) updates the default table only. 2003-02-25 Alan Tam * 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 * 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 * 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 * DbDataRecord.cs: return DbNull.Value in GetValue () if value is null. 2002-10-31 Daniel Morgan * SchemaInfo.cs: added missing properties to fix mcs build 2002-05-05 Miguel de Icaza * 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.