ChangeLog 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. 2003-07-31 Duncan Mak <[email protected]>
  2. * DataAdapter.cs (CloneInternals): Mark with ObsoleteAttribute for
  3. NET_1_1.
  4. 2003-03-21 Alan Tam <[email protected]>
  5. * DbDataAdapter.cs: Update now uses correct DataRowVersion
  6. when accessing the data.
  7. 2003-03-17 Aleksey Demakov <[email protected]>
  8. * DbDataAdapter.cs: BuildSchema now uses ColumnName instead
  9. of BaseColumnName (bug #39830) for DataColumn names.
  10. BaseTableName is no longer taken into account as well.
  11. 2003-02-28 Aleksey Demakov <[email protected]>
  12. * DbDataAdapter.cs: Update (DataSet) updates the default
  13. table only.
  14. 2003-02-25 Alan Tam <[email protected]>
  15. * DbDataAdapter.cs: Added support for filling when schema is present.
  16. Fixed incorrect behavior when ColumnMapping is present
  17. when more than one fields have the same name. Implemented Dispose.
  18. Fixed error when there is no ColumnMapping at all.
  19. Still have some problems in finding the correct TableMapping
  20. because the SourceTable name is not present in BuildSchema
  21. 2003-02-24 Aleksey Demakov <[email protected]>
  22. * DbDataAdapter.cs: The original code might pass a null DataTableMapping
  23. value which is then used to create a RowUpdatingEventArgs
  24. instance. So RowUpdatingEvent handler (for instance
  25. CommandBuilder) could get null DataTableMapping which
  26. might be unexpected. The patch makes sure that a non-null
  27. DataTableMapping is passed.
  28. 2003-01-26 Gonzalo Paniagua Javier <[email protected]>
  29. * DbEnumerator.cs: why does the runtime throw an invalid cast here? The
  30. object is an Int16... Gotta fill a bug report and when fixed undo this
  31. patch.
  32. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  33. * DbDataRecord.cs: return DbNull.Value in GetValue () if value is null.
  34. 2002-10-31 Daniel Morgan <[email protected]>
  35. * SchemaInfo.cs: added missing properties to fix mcs build
  36. 2002-05-05 Miguel de Icaza <[email protected]>
  37. * DataTableMapping.cs, DataTableMappingCollection.cs: comment out
  38. interfaces we do not implement yet.
  39. * DbDataAdapter.cs: Stub IEnumerable, comment out interfaces
  40. we do not implement yet.
  41. * DbDataPermissionAttribute.cs: call base constructor.