ChangeLog 2.7 KB

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