ChangeLog 3.5 KB

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