ChangeLog 5.0 KB

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