ChangeLog 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611
  1. 2006-02-17 Chris Toshok <[email protected]>
  2. * DbProviderFactory.cs: remove two methods. and mark the
  3. DbProviderSupportedClasses ctor as internal since it's not part of
  4. the public api.
  5. * DbTable.cs: remove this class from 2.0 build.. leave it for the
  6. JVM build, I guess?
  7. * RowUpdatingEventArgs.cs: this class isn't abstract in 2.0.
  8. * RowUpdatedEventArgs.cs: this class isn't abstract in 2.0.
  9. * SupportedJoinOperators.cs: new 2.0 enum.
  10. * CatalogLocation.cs: fix enum values.
  11. * GroupByBehavior.cs: same.
  12. * IdentifierCase.cs: same.
  13. * SchemaTableColumn.cs: class is static, not sealed. and add
  14. missing elements.
  15. * SchemaTableOptionalColumn.cs: same.
  16. * DbDataReader.cs: oops, add back in VisibleFieldCount (i missed
  17. it in the corcompare output), add EditorBrowsable attributes all
  18. over the place, and fix some method signatures.
  19. * DbDataUpdatableRecord.cs: remove this 2.0 file.
  20. 2006-02-17 Chris Toshok <[email protected]>
  21. * DbDataReader.cs: remove VisibleFieldCount attribute, and remove
  22. IDataReader2 and IDataRecord2 interfaces.
  23. 2006-02-13 Senganal T <[email protected]>
  24. * DbDataAdapter.cs :
  25. - FillSchema :
  26. - Add table to schema only if MissingSchemaAction is not Ignore
  27. Add schema to table if MissingSchemaAction is set to either of
  28. Add or AddWithKey
  29. - BuildSchema :
  30. - Set the Schema values only if MissingSchemaAction is set to
  31. AddWithKey
  32. 2006-01-31 Senganal T <[email protected]>
  33. * DbDataAdapter.cs :
  34. - Corrected an error in the prev checkin.. Fixes #77415
  35. 2006-01-27 Senganal T <[email protected]>
  36. * DbDataAdapter.cs :
  37. - Modified schema population to follow MissingSchemaAction and MissingMappingAction
  38. - Add a column to the Primary Key only if its not a hidden key
  39. - Added some argument checks
  40. - Removed some redundant code
  41. * DataAdapter :
  42. - Added argument checks
  43. * ExceptionHelper :
  44. - Added InvalidEnumException , a helper function to print error msg
  45. 2006-01-11 Boris Kirzner <[email protected]>
  46. * Index.cs: removed redundant call to RebuildIndex() in constructor.
  47. 2005-12-12 Konstantin Triger <[email protected]>
  48. * Key.cs: Added ContainsVersion function, refactoring.
  49. * Index.cs: Fixed Reset() to be ready for Update() calls.
  50. Otherwise the index can be rebuilt with new values inside the
  51. Update() call itself.
  52. Fixed FindIndexExact(), Update(), Delete().
  53. 2005-11-22 Konstantin Triger <[email protected]>
  54. * DbProviderFactory.cs: TARGET_JVM ifdef.
  55. 2005-11-21 Senganal T <[email protected]>
  56. * DbDataAdapter.cs
  57. * DbParameter.cs
  58. * DbTransaction.cs
  59. * DbTable.cs
  60. * DbProviderFactories.cs
  61. * DbException.cs
  62. * DbProviderFactory.cs
  63. * DbCommandBuilder.cs
  64. * DbDataReader.cs
  65. * DbParameterCollection.cs
  66. - Added stubs and other changes for ADO.NET 2.0 compatibility.
  67. * DbMetaDataCollectionNames.cs (new file)
  68. - Added DbMetaDataCollectionNames Enumeration
  69. 2005-10-24 Konstantin Triger <[email protected]>
  70. * DataContainer.cs: removed extra type validation for object container
  71. 2005-10-14 Senganal T <[email protected]>
  72. * DbDataAdapter.cs :
  73. - BuildSchema() : Set the value of DataColumn Property 'AllowDBNull'
  74. as returned by database. Fixes bug#76433.
  75. 2005-09-21 Boris Kirzner <[email protected]>
  76. * Index.cs:
  77. - Rebuild index immediately after construction.
  78. - Do not add records if they do not padd key filtration.
  79. - Do not attempt to remove records if the are not in the index.
  80. * Key.cs:
  81. - Added HasFilter property, CanContain and DependsOn methods.
  82. - Equals() uses filter expression comparison.
  83. 2005-09-07 Boris Kirzner <[email protected]>
  84. * DataContainer.cs: Do not convert value if container type
  85. is System.Object.
  86. 2005-08-08 Gert Driesen <[email protected]>
  87. * DbTypes.cs: Marked internal to fix public API.
  88. 2005-08-05 Sureshkumar T <[email protected]>
  89. * DbDataAdapter.cs:
  90. - Update (): set parameter values only after getting the
  91. appropriate command from command builder. Close reader only if it
  92. is not closed before. Use parameter's SourceVersion. Whitespace
  93. corrections to comply with standard.
  94. 2005-07-22 Sureshkumar T <[email protected]>
  95. * DataColumnMappingCollection.cs: updated attributes & attribute
  96. descriptions to match with masterinfos.
  97. 2005-07-15 Sureshkumar T <[email protected]>
  98. * DataTableMappingCollection.cs: GetTableMappingBySchemaAction:
  99. meaningful error message if mapping is missing.
  100. * DbDataAdapter.cs: Update: meaningful message if table is missing.
  101. 2005-06-22 Sureshkumar T <[email protected]>
  102. * Index.cs: Remove : length for Array.Copy (a, i+1, a, i, length -
  103. (i+1)) corrected.
  104. 2005-06-21 Sureshkumar T <[email protected]>
  105. * DbConnectionStringBuilder.cs: Implemented method for parsing
  106. connection string through "ConnectionString" property.
  107. * DbConnectionStringBuilderHelper.cs: Helper class to provide
  108. conversion between string=>.net type mapping for connection string
  109. builders. The idea is to use between other providers (odbc) as
  110. well.
  111. 2005-05-29 Boris Kirzner <[email protected]>
  112. * DbCommand.cs - added #ifdef NET_2_0 on DbCommandOptionalFeatures (not used in TARGET_JVM).
  113. * ExceptionHelper.cs - removed java references. Exceptions created on formatted text messages. Code styling fixes.
  114. * DbParameterCollection.cs - implemented indexer properties.
  115. * DbDataAdapter.cs - delagate exceptions creating to ExceptionHelper.
  116. 2005-05-25 Konstantin Triger <[email protected]>
  117. * DataContainer.cs: Correcting the order - first the record is queried whether the value it contains is null, and only if not the value is fetched
  118. 2005-05-20 Umadevi S <[email protected]>
  119. * Added file DbProviderSpecificTypePropertyAttribute.cs
  120. 2005-05-19 Umadevi S <[email protected]>
  121. * RowUpdatingEventArgs.cs - added BaseCommand property for net 2.0
  122. 2005-05-18 Konstantin Triger <[email protected]>
  123. * DbDataAdapter.cs: Initialize the schema values to defaults if the schema does not contain the information
  124. 2005-05-16 Sureshkumar T <[email protected]>
  125. * RecordCache.cs: quick fix to make build 2.0 profile (follow up
  126. for check in 2005-05-16).
  127. 2005-05-16 Konstantin Triger <[email protected]>
  128. * Index.cs: validation that the updated row belongs to the index
  129. 2005-05-02 Konstantin Triger <[email protected]>
  130. * DataContainer.cs:
  131. Added CharDataContainer, SByteDataContainer, UInt16DataContainer, UInt32DataContainer, UInt64DataContainer, DateTimeDataContainer, DecimalDataContainer
  132. SetItemFromDataRecord: Changed to work with ISafeDataRecord or through GetValue to enable conversion
  133. return DBNull.Value when the stored value is null
  134. * DbDataAdapter.cs:
  135. Ensure correct order for LoadDataRow
  136. Fixing schema creation
  137. Use NewRowArray API
  138. * DbEnumerator.cs:
  139. LoadSchema: Retrieve needed fields only
  140. * RecordCache.cs:
  141. Added Rows-to-Records mapping
  142. Added ReadIDataRecord method for correct handling of default/auto increment values
  143. * Added Index.cs: Index implementation
  144. * Added Key.cs: Index descriptor implementation
  145. 2005-04-27 Sureshkumar T <[email protected]>
  146. * DbDataReader.cs: Added static method to construct the schema
  147. table with default schema. Could be reused in many places.
  148. 2005-04-22 Sureshkumar T <[email protected]>
  149. * DbDataAdapter.cs: Moved FillTable and BuildSchema as static
  150. methods as they are not operating on the current instance. This
  151. could be reused to fill any table from a data reader.
  152. * RecordCache.cs: While disposing records, make sure that the
  153. record is not already disposed. i.e. to make sure later the same
  154. record is not reused. Implemented a static method to compare two
  155. version of records in a container.
  156. 2005-04-18 Sureshkumar T <[email protected]>
  157. * DataAdapter.cs: Implemenetd OnFillError handler.
  158. * DbDataAdapter.cs: BuildSchema (): the table to be filled might
  159. contain few additional columns as well. so mapping length should
  160. be columns' length + fields' length.
  161. 2005-03-24 Sureshkumar T <[email protected]>
  162. * DbDataAdapter.cs: Update: If SourceColumn is null, do not set
  163. value for the parameter.
  164. 2005-05-25 Umadevi S <[email protected]>
  165. * Added DbException.cs
  166. 2005-03-23 Sureshkumar T <[email protected]>
  167. * DbDataAdapter.cs: For Update, disable ReadOnly constraint
  168. temporarily before updating the row. Info from Ingo Bauersachs.
  169. SkipAllRemainingRows should also skip current row (msdn).
  170. 2005-03-22 Sureshkumar T <[email protected]>
  171. * DbDataAdapter.cs: Update (): update the rows based on the
  172. UpdateRowSource property. Process further based on the
  173. RowUpdatedEvent handler argument's Status property.
  174. Fixes bug #73587. Thanks to [email protected] (Ingo Bauersachs) for
  175. bug report and patch.
  176. * RowUpdatedEventArgs.cs: if custom error is not set, throw a
  177. default error.
  178. 2005-03-01 Sureshkumar T <[email protected]>
  179. * ConnectionStringsSectionHandler.cs: Added. configuration section
  180. handler for section "connectionStrings". This handler is a ad hoc
  181. solution till the new configuration API is available in mono.
  182. 2005-02-04 Sureshkumar T <[email protected]>
  183. * DbDataAdapter.cs (Update ()) :
  184. - Check for one return result set and map the values back to
  185. datatable.
  186. - Check for output & return value parameters and update the value
  187. back to mapped column
  188. - check for recordsAffected only after closing the reader.
  189. 2005-02-02 Sureshkumar T <[email protected]>
  190. * DbConnection.cs: Implement Dispose pattern.
  191. 2005-01-25 Atsushi Enomoto <[email protected]>
  192. * DbDataPermission.cs : Empty.Union(Empty) is Empty.
  193. 2005-01-14 Atsushi Enomoto <[email protected]>
  194. * DbDataPermissionAttribute.cs, PermissionHelper.cs :
  195. fixed some incompatible type of exception between 2.0 and 1.x.
  196. * DataContainer.cs :
  197. Wrap exceptions thrown by SetValue() within ArgumentException.
  198. 2004-12-10 Sureshkumar T <[email protected]>
  199. * DbDataAdapter.cs (BuildSchema): Add the primary key schema iff
  200. MissingSchemaAction is set to AddWithKey. Also, Add auto increment
  201. value from the source table. fixes bug #67757 and #69110.
  202. 2004-11-24 Sureshkumar T <[email protected]>
  203. * DbProviderSupportedClasses.cs: Added correct enum values.
  204. * DbConnection.cs: Missing virtual method EnlistTransaction Added.
  205. * DbCommand.cs: Implemented ProviderFactory base factory methods.
  206. 2004-11-22 Sureshkumar T <[email protected]>
  207. * DbConnectionStringBuilder.cs: Class for helping creation of db
  208. connection strings added.
  209. 2004-10-01 Sureshkumar T <[email protected]>
  210. * DbProviderFactories.cs: Implemented all the stubs. Added functionality for
  211. getting available provider factories and creating a specified provider factory.
  212. * DbProviderFactoriesConfigurationHandler.cs: Added functionality for handling
  213. DbProviderFactories configuration section.
  214. * DbProviderFactory.cs: Added protected constructor. SupportedClasses property
  215. is made abstract.
  216. 2004-09-14 Sebastien Pouliot <[email protected]>
  217. * DbDataPermission.cs: Implemented Intersect, IsSubsetOf and Union.
  218. Implementation isn't complete as the restrictions seems to change the
  219. expected results (breaking some rules like x.IsSubsetOf (x) == false).
  220. Better (real-world) tests cases are required.
  221. * PermissionHelper.cs: Fixed small differences between System.Data.dll
  222. validations wrt to mscorlib.dll (XML and PermissionState).
  223. 2004-09-13 Sebastien Pouliot <[email protected]>
  224. * DbConnectionOptions.cs: New class for Fx 2.0. Partial implementation
  225. to support new methods in DBDataPermission.
  226. * DbConnectionString.cs: Updated class to split from/inherit
  227. DbConnectionOptions class.
  228. * DbDataPermission.cs: Implemented Add, Clear, Copy, ToXml methods and
  229. completed constructors.
  230. * DbDataPermissionAttribute.cs: Completed/fixed class.
  231. * PermissionHelper.cs: Helper methods to create permission classes.
  232. 2004-08-31 Francisco Figueiredo Jr. <[email protected]>
  233. * DbDataAdapter.cs: Fix for out of memory exceptions when trying to fill a dataset with a query which doesn't return a resultset like insert, delete or update.
  234. 2004-07-21 Umadevi S <[email protected]>
  235. * DbDataRecord.cs - Fix for bug 58163. Return DBNull instead of null
  236. 2004-07-07 Umadevi S <[email protected]>
  237. * DataContainer.cs :CheckedforNull before calling the relavant setmethods in each of the
  238. SetItemForDataRecord method for the DateTimeClass
  239. 2004-06-24 Atsushi Enomoto <[email protected]>
  240. * DataColumnMappingCollection.cs : fixed typo.
  241. * DbDataAdapter.cs : column mappings were not filled.
  242. 2004-06-24 Atsushi Enomoto <[email protected]>
  243. * DataTableMapping.cs : Clone() should also clone ColumnMappings.
  244. 2004-06-18 Umadevi S <[email protected]>
  245. * DataContainer.cs - CheckedforNull before calling the relavant setmethods in each of the
  246. SetItemForDataRecord method for all the classes.
  247. 2004-06-17 Boris Kirzner <[email protected]>
  248. * RecordCache.cs : Added CopyRecord mathod that copies single record from one table to another.
  249. 2004-06-17 Boris Kirzner <[email protected]>
  250. * Datacontainer.cs :
  251. - Store and retreival of null and DBNull values reviewed.
  252. - Added GetInt64 to support AutoIncrement of DataColumn.
  253. - Added missing CopyValue method to BitDataContainer.
  254. - Added FillValues method to propagate single value to whole container.
  255. 2004-06-10 Umadevi S <[email protected]>
  256. * DataTableMappingCollection.cs - fixed nunit testcase errors
  257. IndexOfDataSetTable method
  258. 2004-06-09 Umadevi S <[email protected]>
  259. * DataTableMappingCollection.cs - fixed nunit testcase errors
  260. - Add, GetByDataSetTable,Insert, Remove, RemoveAt methods.
  261. 2004-06-09 Umadevi S <[email protected]>
  262. * DataColumnMappingCollection.cs - fixed nunit testcase errors
  263. - GetByDataSetColumn,IndexOfDataSetColumn, Remove methods.
  264. 2004-06-08 Umadevi S <[email protected]>
  265. * DataColumnMappingCollection.cs - fixed nunit testcase errors.
  266. - remove, removeat, contains methods.
  267. 2004-06-04 Gert Driesen <[email protected]>
  268. * DataAdapter.cs: added missing protected ctor
  269. * DbDataAdapter.cs: added stub for missing protected ctor
  270. * DbDataPermission.cs: added stubs for missing protected
  271. ctors, added stub for missing Clear method
  272. 2004-06-02 Gert Driesen <[email protected]>
  273. * DataColumnMappingCollection.cs: added missing attributes on
  274. indexers
  275. 2004-05-27 Boris Kirzner <[email protected]>
  276. * DataContainer.cs : Bug fixes in BitDataContainer.get_Item and StringDataContainer.SetValue .
  277. 2004-05-20 Gert Driesen ([email protected])
  278. * DbDataPermissionAttribute.cs: change AllowMultiple and
  279. Inherited to match .NET
  280. 2004-05-19 Boris Kirzner <[email protected]>
  281. * Datacontainer.cs : CompareValues reviewed. set_Item and get_Item of null and DBNull values in case of DataContainers
  282. for primitive types reviewed. Added check for null values when reading from IDataRecord.
  283. 2004-05-19 Boris Kirzner <[email protected]>
  284. * RecordCache.cs - added. Each instance of record cache belongs to specific table
  285. and manages pool of records ( indexes into data containers) to be used by data rows.
  286. * DataContainer.cs - added. Provides implementation for data containers that holds data in arrays
  287. of primitives or objects. Each data container belongs to specific DataColumn.
  288. * DbDataAdapter.cs - changes to complete data storage redesign. Bug fix in FillTable
  289. ( to fetch exact number of records required ).
  290. 2004-05-13 Umadevi S ([email protected])
  291. * DbDataPermissionAttribute.cs - Added KeyRestrictions property with a TODO tag
  292. 2004-05-09 Gert Driesen ([email protected])
  293. * ComparerFactory.cs: marked internal
  294. 2003-04-26 Boris Kirzner <[email protected]>
  295. * DataColumnMappingCollection.cs : Small fix in exception message thrown.
  296. 2003-04-25 Boris Kirzner <[email protected]>
  297. * DbDataAdapter.cs : Fixed bug in Fill :
  298. - Reader can have empty results (fo example from UPDATE or DELETE).
  299. - Reader can have results with no rows (SELECT that returns 0 rows but have columns)
  300. - In FillTable - skip rows only once for each table.
  301. 2003-04-14 Juraj Skripsky <[email protected]>
  302. * DbDataAdapter.cs : Refactoring of Fill. New private method
  303. FillTable does most of the work now. Use int[] instead of
  304. hashtable for mapping. Move creation of tableArray[] outside
  305. of loop.
  306. 2004-03-12 Andreas Nahr <[email protected]>
  307. * DbDataPermissionAttribute.cs: Added .Net 1.1 marks
  308. * DataColumnMapping.cs: DO NOT USE the consts scheme if types can be referenced directly!
  309. * DataTableMapping.cs: DO NOT USE the consts scheme if types can be referenced directly!
  310. * DataColumnMappingConverter: Added stub
  311. * DataTableMappingConverter: Added stub
  312. 2004-03-03 Eran Domb <[email protected]>
  313. * ComparerFactory.cs : Added.
  314. 2004-01-10 Atsushi Enomoto <[email protected]>
  315. * DbDataPermission.cs : tiny fix to pass OleDbPermission.
  316. 2004-01-09 Atsushi Enomoto <[email protected]>
  317. * DbDataPermission.cs : .ctor(PermissionState state) should not call
  318. obsolete .ctor(state, allowBlankPassword). csc reports an error.
  319. 2003-12-30 Gonzalo Paniagua Javier <[email protected]>
  320. * DbDataAdapter.cs: handle MissingShemaAction.AddWithKey, call
  321. AcceptChanges in Update when a CommandBuilder is used and
  322. correctly fill information about primary keys in FillSchema.
  323. Patch from Sergei Malinin ([email protected]).
  324. 2003-12-23 Tim Coleman <[email protected]>
  325. * DbConnectionString.cs:
  326. Some implementation
  327. * DbProviderFactory.cs:
  328. Fix typo to make CLS compliant
  329. 2003-12-16 Jackson Harper <[email protected]>
  330. * SchemaTableOptionalColumn.cs: Add to fix default build
  331. 2003-12-16 Tim Coleman <[email protected]>
  332. * CatalogLocation.cs DbCommand.cs DbCommandBuilder.cs
  333. * DbCommandOptionalFeatures.cs DbCommandSet.cs DbConnection.cs
  334. * DbConnectionString.cs DbDataSourceEnumerator.cs
  335. * DbDataUpdatableRecord.cs DbParameter.cs DbParameterCollection.cs
  336. * DbProviderConfigurationHandler.cs DbProviderFactories.cs
  337. * DbProviderFactoriesConfigurationHandler.cs DbProviderFactory.cs
  338. * DbProviderSupportedClasses.cs DbTable.cs DbTransaction.cs
  339. * GroupByBehavior.cs IdentifierCase.cs SchemaLocation.cs
  340. * SchemaTableColumn.cs:
  341. New stubs added for .NET 1.2
  342. * DataAdapter.cs DataColumnMapping.cs DataColumnMappingCollection.cs
  343. * DataTableMapping.cs DataTableMappingCollection.cs DbDataAdapter.cs
  344. * DbDataPermission.cs DbDataPermissionAttribute.cs DbDataRecord.cs
  345. * FieldNameLookup.cs SchemaInfo.cs:
  346. Changes made for .NET 1.2
  347. 2003-10-22 Eran Domb <[email protected]>
  348. * DbDataAdapter.cs : Check if there is mapping to avoid exception.
  349. 2003-11-26 Tim Coleman <[email protected]>
  350. * DbDataReader.cs: Add new stub class
  351. 2003-11-23 Pedro Martínez Juliá <[email protected]>
  352. * DbDataAdapter.cs: Call command dispose in self dispose method. We
  353. need to dispose the connections and other stuff stored in the
  354. commands.
  355. 2003-11-10 Pedro Martínez Juliá <[email protected]>
  356. * DataColumnMappingCollection.cs: Fix a missing exception when the
  357. required mapping is not in the collection. MS.NET throws an
  358. exception there.
  359. 2003-10-22 Eran Domb <[email protected]>
  360. * DbDataAdapter.cs (Fill): add only the mapped column to the dataTable (not all columns of dataReader).
  361. Also closing the dataReader if an exception is thrown.
  362. (Fill): the same as above.
  363. (SetupSchema): in now return string (the table name).
  364. (GetFillParameters): fix a bug.
  365. (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.
  366. (Update): first open the connection if needed. Catch an exception of the ExecuteQuery.
  367. 2003-09-30 Duncan Mak <[email protected]>
  368. Patch from Eran Domb <[email protected]>.
  369. * DbDataAdapter.cs (Fill): Fixed an Exception from being thrown.
  370. 2003-09-25 Duncan Mak <[email protected]>
  371. * DbDataAdapter.cs (Fill): Patch from Eran Domb, <[email protected]>.
  372. Fixes a possible NullReferenceException, more details here:
  373. http://lists.ximian.com/archives/public/mono-devel-list/2003-September/002116.html
  374. 2003-09-21 eran <[email protected]>
  375. * DbDataRecord.cs: The method
  376. System.Data.Common.DbDataRecord.GetValues(object[] values) did not
  377. put the values of the DbDataRecord into values parameter.
  378. 2003-08-26 Gonzalo Paniagua Javier <[email protected]>
  379. * DbDataAdapter.cs: provide a Type for ToArray to avoid invalid cast
  380. exception. Thanks to Mark Easton <[email protected]>.
  381. 2003-07-31 Duncan Mak <[email protected]>
  382. * DataAdapter.cs (CloneInternals): Mark with ObsoleteAttribute for
  383. NET_1_1.
  384. 2003-03-21 Alan Tam <[email protected]>
  385. * DbDataAdapter.cs: Update now uses correct DataRowVersion
  386. when accessing the data.
  387. 2003-03-17 Aleksey Demakov <[email protected]>
  388. * DbDataAdapter.cs: BuildSchema now uses ColumnName instead
  389. of BaseColumnName (bug #39830) for DataColumn names.
  390. BaseTableName is no longer taken into account as well.
  391. 2003-02-28 Aleksey Demakov <[email protected]>
  392. * DbDataAdapter.cs: Update (DataSet) updates the default
  393. table only.
  394. 2003-02-25 Alan Tam <[email protected]>
  395. * DbDataAdapter.cs: Added support for filling when schema is present.
  396. Fixed incorrect behavior when ColumnMapping is present
  397. when more than one fields have the same name. Implemented Dispose.
  398. Fixed error when there is no ColumnMapping at all.
  399. Still have some problems in finding the correct TableMapping
  400. because the SourceTable name is not present in BuildSchema
  401. 2003-02-24 Aleksey Demakov <[email protected]>
  402. * DbDataAdapter.cs: The original code might pass a null DataTableMapping
  403. value which is then used to create a RowUpdatingEventArgs
  404. instance. So RowUpdatingEvent handler (for instance
  405. CommandBuilder) could get null DataTableMapping which
  406. might be unexpected. The patch makes sure that a non-null
  407. DataTableMapping is passed.
  408. 2003-01-26 Gonzalo Paniagua Javier <[email protected]>
  409. * DbEnumerator.cs: why does the runtime throw an invalid cast here? The
  410. object is an Int16... Gotta fill a bug report and when fixed undo this
  411. patch.
  412. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  413. * DbDataRecord.cs: return DbNull.Value in GetValue () if value is null.
  414. 2002-10-31 Daniel Morgan <[email protected]>
  415. * SchemaInfo.cs: added missing properties to fix mcs build
  416. 2002-05-05 Miguel de Icaza <[email protected]>
  417. * DataTableMapping.cs, DataTableMappingCollection.cs: comment out
  418. interfaces we do not implement yet.
  419. * DbDataAdapter.cs: Stub IEnumerable, comment out interfaces
  420. we do not implement yet.
  421. * DbDataPermissionAttribute.cs: call base constructor.