ChangeLog 21 KB

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