ChangeLog 6.4 KB

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