ChangeLog 2.0 KB

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