ChangeLog 5.4 KB

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