ChangeLog 9.0 KB

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