ChangeLog 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. 2004-06-08 Umadevi S <[email protected]>
  2. * DataColumnMappingCollection.cs - fixed nunit testcase errors.
  3. - remove, removeat, contains methods.
  4. 2004-06-04 Gert Driesen <[email protected]>
  5. * DataAdapter.cs: added missing protected ctor
  6. * DbDataAdapter.cs: added stub for missing protected ctor
  7. * DbDataPermission.cs: added stubs for missing protected
  8. ctors, added stub for missing Clear method
  9. 2004-06-02 Gert Driesen <[email protected]>
  10. * DataColumnMappingCollection.cs: added missing attributes on
  11. indexers
  12. 2004-05-27 Boris Kirzner <[email protected]>
  13. * DataContainer.cs : Bug fixes in BitDataContainer.get_Item and StringDataContainer.SetValue .
  14. 2004-05-20 Gert Driesen ([email protected])
  15. * DbDataPermissionAttribute.cs: change AllowMultiple and
  16. Inherited to match .NET
  17. 2004-05-19 Boris Kirzner <[email protected]>
  18. * Datacontainer.cs : CompareValues reviewed. set_Item and get_Item of null and DBNull values in case of DataContainers
  19. for primitive types reviewed. Added check for null values when reading from IDataRecord.
  20. 2004-05-19 Boris Kirzner <[email protected]>
  21. * RecordCache.cs - added. Each instance of record cache belongs to specific table
  22. and manages pool of records ( indexes into data containers) to be used by data rows.
  23. * DataContainer.cs - added. Provides implementation for data containers that holds data in arrays
  24. of primitives or objects. Each data container belongs to specific DataColumn.
  25. * DbDataAdapter.cs - changes to complete data storage redesign. Bug fix in FillTable
  26. ( to fetch exact number of records required ).
  27. 2004-05-13 Umadevi S ([email protected])
  28. * DbDataPermissionAttribute.cs - Added KeyRestrictions property with a TODO tag
  29. 2004-05-09 Gert Driesen ([email protected])
  30. * ComparerFactory.cs: marked internal
  31. 2003-04-26 Boris Kirzner <[email protected]>
  32. * DataColumnMappingCollection.cs : Small fix in exception message thrown.
  33. 2003-04-25 Boris Kirzner <[email protected]>
  34. * DbDataAdapter.cs : Fixed bug in Fill :
  35. - Reader can have empty results (fo example from UPDATE or DELETE).
  36. - Reader can have results with no rows (SELECT that returns 0 rows but have columns)
  37. - In FillTable - skip rows only once for each table.
  38. 2003-04-14 Juraj Skripsky <[email protected]>
  39. * DbDataAdapter.cs : Refactoring of Fill. New private method
  40. FillTable does most of the work now. Use int[] instead of
  41. hashtable for mapping. Move creation of tableArray[] outside
  42. of loop.
  43. 2004-03-12 Andreas Nahr <[email protected]>
  44. * DbDataPermissionAttribute.cs: Added .Net 1.1 marks
  45. * DataColumnMapping.cs: DO NOT USE the consts scheme if types can be referenced directly!
  46. * DataTableMapping.cs: DO NOT USE the consts scheme if types can be referenced directly!
  47. * DataColumnMappingConverter: Added stub
  48. * DataTableMappingConverter: Added stub
  49. 2004-03-03 Eran Domb <[email protected]>
  50. * ComparerFactory.cs : Added.
  51. 2004-01-10 Atsushi Enomoto <[email protected]>
  52. * DbDataPermission.cs : tiny fix to pass OleDbPermission.
  53. 2004-01-09 Atsushi Enomoto <[email protected]>
  54. * DbDataPermission.cs : .ctor(PermissionState state) should not call
  55. obsolete .ctor(state, allowBlankPassword). csc reports an error.
  56. 2003-12-30 Gonzalo Paniagua Javier <[email protected]>
  57. * DbDataAdapter.cs: handle MissingShemaAction.AddWithKey, call
  58. AcceptChanges in Update when a CommandBuilder is used and
  59. correctly fill information about primary keys in FillSchema.
  60. Patch from Sergei Malinin ([email protected]).
  61. 2003-12-23 Tim Coleman <[email protected]>
  62. * DbConnectionString.cs:
  63. Some implementation
  64. * DbProviderFactory.cs:
  65. Fix typo to make CLS compliant
  66. 2003-12-16 Jackson Harper <[email protected]>
  67. * SchemaTableOptionalColumn.cs: Add to fix default build
  68. 2003-12-16 Tim Coleman <[email protected]>
  69. * CatalogLocation.cs DbCommand.cs DbCommandBuilder.cs
  70. * DbCommandOptionalFeatures.cs DbCommandSet.cs DbConnection.cs
  71. * DbConnectionString.cs DbDataSourceEnumerator.cs
  72. * DbDataUpdatableRecord.cs DbParameter.cs DbParameterCollection.cs
  73. * DbProviderConfigurationHandler.cs DbProviderFactories.cs
  74. * DbProviderFactoriesConfigurationHandler.cs DbProviderFactory.cs
  75. * DbProviderSupportedClasses.cs DbTable.cs DbTransaction.cs
  76. * GroupByBehavior.cs IdentifierCase.cs SchemaLocation.cs
  77. * SchemaTableColumn.cs:
  78. New stubs added for .NET 1.2
  79. * DataAdapter.cs DataColumnMapping.cs DataColumnMappingCollection.cs
  80. * DataTableMapping.cs DataTableMappingCollection.cs DbDataAdapter.cs
  81. * DbDataPermission.cs DbDataPermissionAttribute.cs DbDataRecord.cs
  82. * FieldNameLookup.cs SchemaInfo.cs:
  83. Changes made for .NET 1.2
  84. 2003-10-22 Eran Domb <[email protected]>
  85. * DbDataAdapter.cs : Check if there is mapping to avoid exception.
  86. 2003-11-26 Tim Coleman <[email protected]>
  87. * DbDataReader.cs: Add new stub class
  88. 2003-11-23 Pedro Martínez Juliá <[email protected]>
  89. * DbDataAdapter.cs: Call command dispose in self dispose method. We
  90. need to dispose the connections and other stuff stored in the
  91. commands.
  92. 2003-11-10 Pedro Martínez Juliá <[email protected]>
  93. * DataColumnMappingCollection.cs: Fix a missing exception when the
  94. required mapping is not in the collection. MS.NET throws an
  95. exception there.
  96. 2003-10-22 Eran Domb <[email protected]>
  97. * DbDataAdapter.cs (Fill): add only the mapped column to the dataTable (not all columns of dataReader).
  98. Also closing the dataReader if an exception is thrown.
  99. (Fill): the same as above.
  100. (SetupSchema): in now return string (the table name).
  101. (GetFillParameters): fix a bug.
  102. (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.
  103. (Update): first open the connection if needed. Catch an exception of the ExecuteQuery.
  104. 2003-09-30 Duncan Mak <[email protected]>
  105. Patch from Eran Domb <[email protected]>.
  106. * DbDataAdapter.cs (Fill): Fixed an Exception from being thrown.
  107. 2003-09-25 Duncan Mak <[email protected]>
  108. * DbDataAdapter.cs (Fill): Patch from Eran Domb, <[email protected]>.
  109. Fixes a possible NullReferenceException, more details here:
  110. http://lists.ximian.com/archives/public/mono-devel-list/2003-September/002116.html
  111. 2003-09-21 eran <[email protected]>
  112. * DbDataRecord.cs: The method
  113. System.Data.Common.DbDataRecord.GetValues(object[] values) did not
  114. put the values of the DbDataRecord into values parameter.
  115. 2003-08-26 Gonzalo Paniagua Javier <[email protected]>
  116. * DbDataAdapter.cs: provide a Type for ToArray to avoid invalid cast
  117. exception. Thanks to Mark Easton <[email protected]>.
  118. 2003-07-31 Duncan Mak <[email protected]>
  119. * DataAdapter.cs (CloneInternals): Mark with ObsoleteAttribute for
  120. NET_1_1.
  121. 2003-03-21 Alan Tam <[email protected]>
  122. * DbDataAdapter.cs: Update now uses correct DataRowVersion
  123. when accessing the data.
  124. 2003-03-17 Aleksey Demakov <[email protected]>
  125. * DbDataAdapter.cs: BuildSchema now uses ColumnName instead
  126. of BaseColumnName (bug #39830) for DataColumn names.
  127. BaseTableName is no longer taken into account as well.
  128. 2003-02-28 Aleksey Demakov <[email protected]>
  129. * DbDataAdapter.cs: Update (DataSet) updates the default
  130. table only.
  131. 2003-02-25 Alan Tam <[email protected]>
  132. * DbDataAdapter.cs: Added support for filling when schema is present.
  133. Fixed incorrect behavior when ColumnMapping is present
  134. when more than one fields have the same name. Implemented Dispose.
  135. Fixed error when there is no ColumnMapping at all.
  136. Still have some problems in finding the correct TableMapping
  137. because the SourceTable name is not present in BuildSchema
  138. 2003-02-24 Aleksey Demakov <[email protected]>
  139. * DbDataAdapter.cs: The original code might pass a null DataTableMapping
  140. value which is then used to create a RowUpdatingEventArgs
  141. instance. So RowUpdatingEvent handler (for instance
  142. CommandBuilder) could get null DataTableMapping which
  143. might be unexpected. The patch makes sure that a non-null
  144. DataTableMapping is passed.
  145. 2003-01-26 Gonzalo Paniagua Javier <[email protected]>
  146. * DbEnumerator.cs: why does the runtime throw an invalid cast here? The
  147. object is an Int16... Gotta fill a bug report and when fixed undo this
  148. patch.
  149. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  150. * DbDataRecord.cs: return DbNull.Value in GetValue () if value is null.
  151. 2002-10-31 Daniel Morgan <[email protected]>
  152. * SchemaInfo.cs: added missing properties to fix mcs build
  153. 2002-05-05 Miguel de Icaza <[email protected]>
  154. * DataTableMapping.cs, DataTableMappingCollection.cs: comment out
  155. interfaces we do not implement yet.
  156. * DbDataAdapter.cs: Stub IEnumerable, comment out interfaces
  157. we do not implement yet.
  158. * DbDataPermissionAttribute.cs: call base constructor.