ChangeLog 21 KB

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