ChangeLog 9.8 KB

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