ChangeLog 2.3 KB

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