ChangeLog 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. 2003-12-16 Tim Coleman <[email protected]>
  2. * CatalogLocation.cs DbCommand.cs DbCommandBuilder.cs
  3. * DbCommandOptionalFeatures.cs DbCommandSet.cs DbConnection.cs
  4. * DbConnectionString.cs DbDataSourceEnumerator.cs
  5. * DbDataUpdatableRecord.cs DbParameter.cs DbParameterCollection.cs
  6. * DbProviderConfigurationHandler.cs DbProviderFactories.cs
  7. * DbProviderFactoriesConfigurationHandler.cs DbProviderFactory.cs
  8. * DbProviderSupportedClasses.cs DbTable.cs DbTransaction.cs
  9. * GroupByBehavior.cs IdentifierCase.cs SchemaLocation.cs
  10. * SchemaTableColumn.cs:
  11. New stubs added for .NET 1.2
  12. * DataAdapter.cs DataColumnMapping.cs DataColumnMappingCollection.cs
  13. * DataTableMapping.cs DataTableMappingCollection.cs DbDataAdapter.cs
  14. * DbDataPermission.cs DbDataPermissionAttribute.cs DbDataRecord.cs
  15. * FieldNameLookup.cs SchemaInfo.cs:
  16. Changes made for .NET 1.2
  17. 2003-10-22 Eran Domb <[email protected]>
  18. * DbDataAdapter.cs : Check if there is mapping to avoid exception.
  19. 2003-11-26 Tim Coleman <[email protected]>
  20. * DbDataReader.cs: Add new stub class
  21. 2003-11-23 Pedro Martínez Juliá <[email protected]>
  22. * DbDataAdapter.cs: Call command dispose in self dispose method. We
  23. need to dispose the connections and other stuff stored in the
  24. commands.
  25. 2003-11-10 Pedro Martínez Juliá <[email protected]>
  26. * DataColumnMappingCollection.cs: Fix a missing exception when the
  27. required mapping is not in the collection. MS.NET throws an
  28. exception there.
  29. 2003-10-22 Eran Domb <[email protected]>
  30. * DbDataAdapter.cs (Fill): add only the mapped column to the dataTable (not all columns of dataReader).
  31. Also closing the dataReader if an exception is thrown.
  32. (Fill): the same as above.
  33. (SetupSchema): in now return string (the table name).
  34. (GetFillParameters): fix a bug.
  35. (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.
  36. (Update): first open the connection if needed. Catch an exception of the ExecuteQuery.
  37. 2003-09-30 Duncan Mak <[email protected]>
  38. Patch from Eran Domb <[email protected]>.
  39. * DbDataAdapter.cs (Fill): Fixed an Exception from being thrown.
  40. 2003-09-25 Duncan Mak <[email protected]>
  41. * DbDataAdapter.cs (Fill): Patch from Eran Domb, <[email protected]>.
  42. Fixes a possible NullReferenceException, more details here:
  43. http://lists.ximian.com/archives/public/mono-devel-list/2003-September/002116.html
  44. 2003-09-21 eran <[email protected]>
  45. * DbDataRecord.cs: The method
  46. System.Data.Common.DbDataRecord.GetValues(object[] values) did not
  47. put the values of the DbDataRecord into values parameter.
  48. 2003-08-26 Gonzalo Paniagua Javier <[email protected]>
  49. * DbDataAdapter.cs: provide a Type for ToArray to avoid invalid cast
  50. exception. Thanks to Mark Easton <[email protected]>.
  51. 2003-07-31 Duncan Mak <[email protected]>
  52. * DataAdapter.cs (CloneInternals): Mark with ObsoleteAttribute for
  53. NET_1_1.
  54. 2003-03-21 Alan Tam <[email protected]>
  55. * DbDataAdapter.cs: Update now uses correct DataRowVersion
  56. when accessing the data.
  57. 2003-03-17 Aleksey Demakov <[email protected]>
  58. * DbDataAdapter.cs: BuildSchema now uses ColumnName instead
  59. of BaseColumnName (bug #39830) for DataColumn names.
  60. BaseTableName is no longer taken into account as well.
  61. 2003-02-28 Aleksey Demakov <[email protected]>
  62. * DbDataAdapter.cs: Update (DataSet) updates the default
  63. table only.
  64. 2003-02-25 Alan Tam <[email protected]>
  65. * DbDataAdapter.cs: Added support for filling when schema is present.
  66. Fixed incorrect behavior when ColumnMapping is present
  67. when more than one fields have the same name. Implemented Dispose.
  68. Fixed error when there is no ColumnMapping at all.
  69. Still have some problems in finding the correct TableMapping
  70. because the SourceTable name is not present in BuildSchema
  71. 2003-02-24 Aleksey Demakov <[email protected]>
  72. * DbDataAdapter.cs: The original code might pass a null DataTableMapping
  73. value which is then used to create a RowUpdatingEventArgs
  74. instance. So RowUpdatingEvent handler (for instance
  75. CommandBuilder) could get null DataTableMapping which
  76. might be unexpected. The patch makes sure that a non-null
  77. DataTableMapping is passed.
  78. 2003-01-26 Gonzalo Paniagua Javier <[email protected]>
  79. * DbEnumerator.cs: why does the runtime throw an invalid cast here? The
  80. object is an Int16... Gotta fill a bug report and when fixed undo this
  81. patch.
  82. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  83. * DbDataRecord.cs: return DbNull.Value in GetValue () if value is null.
  84. 2002-10-31 Daniel Morgan <[email protected]>
  85. * SchemaInfo.cs: added missing properties to fix mcs build
  86. 2002-05-05 Miguel de Icaza <[email protected]>
  87. * DataTableMapping.cs, DataTableMappingCollection.cs: comment out
  88. interfaces we do not implement yet.
  89. * DbDataAdapter.cs: Stub IEnumerable, comment out interfaces
  90. we do not implement yet.
  91. * DbDataPermissionAttribute.cs: call base constructor.