ChangeLog 40 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114
  1. 2010-10-26 Veerapuram Varadhan <[email protected]>
  2. ** Fixes #564833/580736
  3. * DbDataAdapter.cs (*Command): Fix for .NET compatibility which
  4. supports both type of adapters with/without discrete command
  5. instances.
  6. 2009-10-28 Veerapuram Varadhan <[email protected]>
  7. ** Fixes #385028/#385029
  8. * DbCommandBuilder.cs (CreateInsertCommand): Workaround for inserting
  9. DEFAULT values to non-null-columns.
  10. (GetInsertCommand): New overload added to handle above workaround.
  11. (set_DataAdapter): Register for the RowUpdatingEventHandlers.
  12. 2009-10-14 Jonathan Pryor <[email protected]>
  13. * DbConnection.cs: Throw NotImplementedException fom
  14. DbConnection.DbProviderFactory, as DbProviderFactories isn't
  15. included in the MonoTouch profile.
  16. 2009-07-30 Veerapuram Varadhan <[email protected]>
  17. * DbDataAdapter.cs (IDbDataAdapter.get_*Command): For non 2.0 profile, do not
  18. implement these properties and related changes.
  19. 2009-07-30 Veerapuram Varadhan <[email protected]>
  20. * DbDataAdapter.cs (set_DeleteCommand): Code cleanup.
  21. 2009-07-29 Veerapuram Varadhan <[email protected]>
  22. * DbDataAdapter.cs (*Command properties): Don't call IDbDataAdapter.*Command,
  23. as provider specific DbDataAdapters would have its own implementation.
  24. 2009-07-27 Veerapuram Varadhan <[email protected]>
  25. * DbCommandBuilder.cs (CreateUpdateCommand): Don't set Nullable
  26. property "Original_*" fields.
  27. 2009-07-24 Veerapuram Varadhan <[email protected]>
  28. * DbCommandBuilder.cs (Create*Command): Fill up the missing pieces from
  29. SqlCommandBuilder version of Create*Commands that fixes the failing tests.
  30. 2009-07-24 Veerapuram Varadhan <[email protected]>
  31. * DbCommandBuilder.cs (CreateDeleteCommand, CreateUpdateCommand): Add the
  32. nullcheck-param into the respective command's parameter list. Fixes
  33. build breaks. Individual provider's CommandBuilder classes from 2.0
  34. profile onwards use the base version of methods to maintain these commands.
  35. (Get*Command): Cleanup code duplication
  36. * DbDataAdapter (Update): Use SourceColumnNullMapping property to handle
  37. nullcheckparams. Fixes #522624. Patch by
  38. Gert Driesen <[email protected]>.
  39. 2009-07-15 Veerapuram Varadhan <[email protected]>
  40. ** Part of fix for #325464
  41. * DbParameter.cs (FrameworkDbType, DbTypeMapping, SystemType): New internal properties
  42. required to convert between DbType/FrameworkType/SystemType.
  43. 2009-05-10 Marek Habersack <[email protected]>
  44. * DbConnection.cs: implemented the DbProviderFactory property
  45. 2009-03-31 Veerapuram Varadhan <[email protected]>
  46. * Fixes rest of #480377
  47. * DataContainer.cs (GetContainerData, GetExplicitValue): Added to handle cases
  48. where passed type overloads an explicit operator for conversion of values.
  49. 2009-01-03 Gert Driesen <[email protected]>
  50. * DbCommandBuilder.cs (QuoteIdentifier): Throw NotSupportedException.
  51. * DbDataAdapter.cs (Update): Add row causing concurrency violation
  52. to DBConcurrencyException.
  53. 2008-12-30 Raja R Harinath <[email protected]>
  54. Mildly rewrite duplicate-inferring logic.
  55. * Index.cs (IndexDuplicateState): Remove.
  56. (_hasDuplicates): Remove. Replace by ...
  57. (know_have_duplicates, know_no_duplicates): ... these.
  58. 2008-12-30 Gert Driesen <[email protected]>
  59. * DbCommandBuilder.cs: When CatalogSeparator or SchemaSeparator are
  60. not set (or explicitly set to null or empty string), then return
  61. default separator character. Added value check for CatalogLocation and
  62. ConflictOption. Removed regions.
  63. 2008-12-30 Gert Driesen <[email protected]>
  64. * DbCommandBuilder.cs: Fixed default value for ConflicOption.
  65. 2008-12-30 Gert Driesen <[email protected]>
  66. * DbCommandBuilder.cs: Return a zero-length string when QuotePrefix or
  67. QuoteSuffix are not set (or are set to null). Changing QuotePrefix or
  68. QuoteSuffix after a command has been generated should result in an
  69. InvalidOperationException.
  70. * DbConnectionStringBuilder.cs: Added support for ODBC rules. Major
  71. rewrite fixing many compatibility issues, and improving support for
  72. connectionstring formats/characters.
  73. 2008-11-25 Atsushi Enomoto <[email protected]>
  74. * DbDataRecord.cs : it is abstract, so create different impl. class.
  75. * DbEnumerator.cs : use above.
  76. 2008-11-17 Raja R Harinath <[email protected]>
  77. Avoid allocating empty arrays.
  78. * Index.cs (empty): New empty array constant.
  79. (Reset): Initialize '_array' to 'empty'.
  80. (RebuildIndex): Don't allocate array if it will be empty.
  81. (FindAllIndexes): Use 'empty' instead of 'new int [0]'.
  82. 2008-11-17 Raja R Harinath <[email protected]>
  83. * Index.cs: Remove use of Array and Size properties by taking
  84. advantage of the invariant that _array is never null.
  85. (EnsureArray): Remove.
  86. (Array): Remove.
  87. 2008-11-17 Raja R Harinath <[email protected]>
  88. * RecordCache.cs: Reduce some extraneous nesting.
  89. 2008-10-07 Daniel Morgan <[email protected]>
  90. * DbConnectionStringBuilder.cs: fix setting and getting
  91. the ConnectionString property
  92. 2008-09-16 Veerapuram Varadhan <[email protected]>
  93. ** Fixes#421336 - Patch provided by <[email protected]>
  94. DbCommandBuilder.cs: Several scenarios leading to exceptions when
  95. creating the update, insert and delete commands:
  96. 1. The "IsExpression" column in the column schema table can also
  97. be DBNull which is equivalent to "false" but the DBCommandBuilder
  98. does not check for DBNull and simply tries to cast it into a bool,
  99. which will fail.
  100. 2. The commands do not get refreshed after a call to
  101. UpdateSchema() because they are not set to NULL. This has the
  102. consequence that empty commands(created with CreateNewCommand())
  103. are returned afterwards.
  104. 3. Multiple parameters with the same name are generated if the
  105. parameter names should be named after the columns.
  106. 2008-09-05 Raja R Harinath <[email protected]>
  107. * DataContainer.cs (*.ZeroOut): Rename from the somewhat unclear
  108. 'SetDefaultValue'.
  109. (IsNull): Use a more idiomatic form of the short-circuit.
  110. (*.SetValue): Convert to one-liners.
  111. 2008-08-08 Raja R Harinath <[email protected]>
  112. Reduce massive code duplication
  113. * DataContainer.cs (DataContainer): Rename from AbstractDataContainer.
  114. Introduce new 'protected abstract' members to encapsulate
  115. type-specific handling, and move all common code here.
  116. (DataContainer.Create): Rename from CreateInstance.
  117. 2008-07-06 Sebastien Pouliot <[email protected]>
  118. * DbDataReader.cs: Replace a few Type.GetType by typeof
  119. [Found using Gendarme AvoidTypeGetTypeForConstantStringsRule]
  120. 2008-07-03 Marek Habersack <[email protected]>
  121. * DataAdapter.cs (BuildSchema): Check for null.
  122. 2008-07-01 Rodrigo Kumpera <[email protected]>
  123. * RecordCache.cs: Kill some foreach loops.
  124. 2008-04-21 Gert Driesen <[email protected]>
  125. * DataColumnMappingCollection.cs: Modified argument names to match
  126. MS. Code formatting.
  127. * DataTableMappingCollection.cs: Modified argument names to match MS.
  128. Code formatting.
  129. 2008-03-23 Gert Driesen <[email protected]>
  130. * DbDataAdapter.cs: Corcompare fixes and code formatting.
  131. * DbDataRecord.cs: Corcompare fixes and code formatting.
  132. * DataColumnMappingCollection.cs: Corcompare fixes and code formatting.
  133. * RowUpdatedEventArgs.cs: Corcompare fixes and code formatting.
  134. * DbParameterCollection.cs: Corcompare fixes and code formatting.
  135. 2007-11-15 Atsushi Enomoto <[email protected]>
  136. * DbProviderFactoriesConfigurationHandler.cs : Create() now takes
  137. parent DataSet into consideration i.e. it now merges items in
  138. different configurations. Fixed bug #323708.
  139. 2007-10-21 Gert Driesen <[email protected]>
  140. * DbDataPermissionAttribute.cs: In KeyRestrictionBehavior, reuse
  141. ExceptionHelper.CheckEnumValue.
  142. * ExceptionHelper.cs: Use same exception message for both 1.0 and 2.0.
  143. * Index.cs: Fixed compiler warnings. Code formatting.
  144. 2007-10-20 Gert Driesen <[email protected]>
  145. * DbDataAdapter.cs: Implemented UpdateBatchSize setter.
  146. * DataAdapter.cs: In FillLoadOption setter, ensure value is valid.
  147. Modified MissingMappingAction and MissingSchemaAction setters to use
  148. ExceptionHelper.CheckEnumValue to validate value. Spaces to tabs and
  149. code formatting.
  150. * ExceptionHelper.cs: Added CheckEnumValue method and modified
  151. InvalidEnumValueException method to return AORE on 2.0 profile. Added
  152. ConnectionClosed method that returns an InvalidOperationException.
  153. 2007-10-19 Gert Driesen <[email protected]>
  154. * DbTransaction.cs: Do not perform a rollback in Dispose (bool).
  155. Leaves it up to deriving classes to override Dispose (bool) and
  156. perform a rollback if necessary. Fixes bug #325397. Code formatting.
  157. * ExceptionHelper.cs: Added TransactionNotUsable method that constructs
  158. an InvalidOperationException to be thrown by IDbTransaction
  159. implementations when the transaction is no longer open.
  160. 2007-09-27 Nagappan A <[email protected]>
  161. * DbDataAdapter.cs: Added MonoTODO in appropriate place.
  162. * DbCommandBuilder.cs (initializeCommand): Implemented missing API.
  163. 2007-09-25 Nagappan A <[email protected]>
  164. * DbConnection.cs: 2.0 attribute fixes.
  165. * DataColumnMapping.cs: 2.0 attribute fixes.
  166. * DbParameterCollection.cs: Code alignment.
  167. * DataAdapter.cs: 2.0 attribute fixes.
  168. * DataTableMapping.cs: 2.0 attribute fixes.
  169. * RowUpdatingEventArgs.cs (BaseCommand): Code alignment.
  170. 2007-09-24 Konstantin Triger <[email protected]>
  171. * DbEnumerator.cs, DbDataRecord.cs: refactoring.
  172. * DbDataRecord.cs: GetValue() should return null instead of DBNull.
  173. 2007-08-10 Nagappan A <[email protected]>
  174. * DbDataAdapter.cs (Fill): Fixed method signature.
  175. 2007-07-26 Nagappan A <[email protected]>
  176. * DbConnection.cs: Removed bogus TODO.
  177. 2007-07-22 Nagappan A <[email protected]>
  178. * DbConnection.cs: 2.0 missing features.
  179. * DbDataAdapter.cs: 2.0 missing features.
  180. 2007-06-30 Gert Driesen <[email protected]>
  181. * DbDataAdapter.cs: Marked ICloneable.Clone obsolete to match MS.
  182. 2007-06-21 Nagappan A <[email protected]>
  183. * DbConnectionStringBuilder.cs (Init): Modified the dictionary to
  184. use StringComparer.InvariantCultureIgnoreCase.
  185. (Add, ContainsKey): Checks whether argument is null or empty string.
  186. 2007-05-08 Adar Wesley <[email protected]>
  187. * DbProviderFactory.cs: minor refactoring for throwing exceptions
  188. 2007-04-30 Marek Habersack <[email protected]>
  189. * DbProviderFactories.cs: throw the same exception MS.NET does.
  190. 2007-03-03 Gert Driesen <[email protected]>
  191. * DbProviderFactoriesConfigurationHandler.cs: Added support for
  192. clear node.
  193. 2007-03-03 Gert driesen <[email protected]>
  194. * ConnectionStringsSectionHandler.cs: Removed since the 2.0 config
  195. API is in place.
  196. * DbProviderFactoriesConfigurationHandler.cs: Fixed name of DataSet
  197. to match MS. Removed SupportedClasses column since this is no longer
  198. part of 2.0 profile (removed during beta). Throw
  199. ConfigurationErrorsException for unrecognized elements. Mark methods
  200. private, and refactor them. Added FIXMEs for missing checks for
  201. unrecognized attributes.
  202. * DbProviderFactories.cs: Marked constants internal. Replaced spaces
  203. with tabs. Use ConfigurationManager.GetSection instead of deprecated
  204. ConfigurationSettings.GetConfig.
  205. 2007-02-26 Atsushi Enomoto <[email protected]>
  206. * DbProviderFactoriesConfigurationHandler.cs : there was a config
  207. test that used to be broken.
  208. 2007-02-26 Atsushi Enomoto <[email protected]>
  209. * DbProviderFactoriesConfigurationHandler.cs : remove "support"
  210. attribute check, as it does not really do anything.
  211. 2007-02-19 Atsushi Enomoto <[email protected]>
  212. * DbProviderFactoriesConfigurationHandler.cs : "support" attribute is
  213. optional. Fixed bug #80894.
  214. 2007-02-09 Nagappan A <[email protected]>
  215. * DbProviderFactory.cs: Derived class has to implement all the
  216. methods of this class.
  217. * DbProviderFactoriesConfigurationHandler.cs (Create): Removed
  218. bogus MonoTODO
  219. 2007-01-08 Nagappan A <[email protected]>
  220. * DataTableMappingCollection.cs (AddRange): Implemented missing
  221. NET 2.0 API.
  222. * DbConnection.cs (GetSchema): Implemented missing NET 2.0 API,
  223. based on SqlClient implementation.
  224. * DbConnectionStringBuilder.cs (AppendKeyValuePair): Implemented
  225. missing API.
  226. * DbDataReader.cs (GetData): Implemented missing API.
  227. (GetDbDataReader): Implemented missing API.
  228. * DbCommandBuilder.cs (BuildCache, BuildInformation)
  229. (IncludedInInsert, IncludedInUpdate, IncludedInWhereClause)
  230. (CreateDeleteCommand, CreateInsertCommand, CreateNewCommand)
  231. (CreateUpdateCommand, CreateParameter): Added private methods.
  232. (QuotedTableName, GetQuotedString, CatalogLocation)
  233. (CatalogSeparator, ConflictOption, DataAdapter, QuotePrefix)
  234. (QuoteSuffix, SchemaSeparator): Implemented public properties.
  235. (SourceCommand): Implemented private property.
  236. (Dispose, RowUpdatingHandler): Implemented protected methods.
  237. (GetDeleteCommand, GetInsertCommand, GetUpdateCommand)
  238. (QuoteIdentifier, UnquoteIdentifier, RefreshSchema): Implemented
  239. public methods.
  240. * DbProviderFactory.cs: Removed MonoTODO's as the derived class
  241. has to implement all the methods in this class.
  242. * DataAdapter.cs (Fill): Implemented missing method.
  243. * DbDataAdapter.cs (FillCommandBehavior): Implemented property.
  244. 2006-12-20 Nagappan A <[email protected]>
  245. * DataColumnMapping.cs (GetDataColumnBySchemaAction): Implemented
  246. 2.0 profile method.
  247. * DbDataReader.cs: Removed TODO's where ever the implementation is
  248. available.
  249. * RowUpdatedEventArgs.cs: Removed TODO's where ever the
  250. implementation is available.
  251. * DataAdapter.cs (FillInternal): Moved from DbDataAdapater.cs to
  252. here.
  253. (BuildSchema): Moved from DbDataAdapter.cs.
  254. (FillTable): Moved from DbDataAdapter.cs.
  255. (OnFillErrorInternal): Implemented new internal method to raise an
  256. event.
  257. (SetupSchema): Moved from DbDataAdapter.cs.
  258. (FillInterl): Moved common implementation from DbDataAdapter.cs.
  259. Removed TODO's where ever the implementation is available.
  260. * DbDataAdapter.cs (OnRowUpdated): Implemented protected method.
  261. (OnRowUpdating): Implemented protected method.
  262. (CreateFillErrorEvent): Moved to DataAdapter.cs.
  263. (Fill): Moved common implementation to DataAdapter.cs.
  264. (FillTable): Moved to DataAdapter.cs.
  265. (BuildSchema): Moved to DataAdapter.cs.
  266. (SetupSchema): Moved to DataAdapter.cs.
  267. 2006-12-11 Miguel de Icaza <[email protected]>
  268. * DataAdapter.cs: Removed TODO, NotSupportedException was the
  269. correct implementation.
  270. 2006-11-28 Nagappan A <[email protected]>
  271. * DbDataAdapter.cs: Removed bogus MonoTODOs
  272. * DataAdapter.cs: Removed bogus MonoTODOs
  273. 2006-11-15 Nagappan A <[email protected]>
  274. * DbDataAdapter.cs (FillFromReader): Implemented missing API to
  275. handle FillErrorEventHandler
  276. (DataAdapter): Implemented missing .NET 2.0 function
  277. (GetDeleteCommand): Returns DbDataAdapter deleteCommand internal
  278. variable.
  279. (GetInsertCommand): Returns DbDataAdapter insertCommand internal
  280. variable.
  281. (GetUpdateCommand): Returns DbDataAdapter updateCommand internal
  282. variable.
  283. 2006-09-06 Konstantin Triger <[email protected]>
  284. * DbDataAdapter.cs: added basic implementation for some 2.0 features.
  285. 2006-08-24 Vladimir Krasnov <[email protected]>
  286. * DbProviderFactories.cs: added TARGET_JVM block to not supported
  287. functionality
  288. 2006-08-06 Konstantin Triger <[email protected]>
  289. * DbDataReader.cs: DbDataReader.Dipose(bool) - implemented.
  290. 2006-07-17 Senganal T <[email protected]>
  291. * Index.cs :
  292. - GetAllRows : Added. Returns all the rows in the current
  293. index.
  294. - GetDistinctRows :Added. Returns all the distinct rows (based
  295. in Key Columns) in the index.
  296. 2006-07-13 Senganal T <[email protected]>
  297. * SchemaInfo.cs DbDataAdapter.cs DbConnectionOptions.cs DbParameter.cs
  298. DbMetaDataColumnNames.cs DbTransaction.cs DataTableMapping.cs DataAdapter.cs
  299. FieldNameLookup.cs DbDataRecord.cs DataColumnMappingCollection.cs DbCommand.cs
  300. DbDataPermission.cs DbProviderFactory.cs DbCommandBuilder.cs DbConnectionString.cs
  301. RowUpdatedEventArgs.cs DbDataReader.cs DbConnectionStringBuilder.cs DbConnection.cs
  302. DataTableMappingCollection.cs :
  303. 2.0 Api fixes
  304. 2006-06-15 Senganal T <[email protected]>
  305. * Key.cs :
  306. -Equals : Check for Equality of Sort Order too.
  307. 2006-04-07 Senganal T <[email protected]>
  308. * DbDataAdapter.cs :
  309. * Update () : If the Update/Delete Query has a null check,
  310. then populate the parameter value correctly.
  311. 2006-03-20 Senganal T <[email protected]>
  312. * DataAdapter.cs :
  313. - Ctor () : Set Default Values for DataAdapter members
  314. * DbDataAdapter.cs :
  315. - Update () : Call row.AcceptChanges only if AcceptChangesDuringUpdate
  316. is true. Fixes bug #77776
  317. 2006-03-09 Senganal T <[email protected]>
  318. * Index.cs :
  319. - Update () : Add the new record in the correct position
  320. 2006-03-07 Senganal T <[email protected]>
  321. * Key.cs :
  322. Reverted the changes from the earlier patch.
  323. 2006-02-22 Senganal T <[email protected]>
  324. * DbDataAdapter.cs :
  325. - FillTable : Move BeginLoadData, EndLoadData outside the loop. Also,
  326. move EndLoadData outsidet try,catch block. FillError is only for errors
  327. occuring during loading the data into datatable.
  328. * Key.cs :
  329. - Set Default value of RowStateFilter to (CurrentRos | OriginalRows).
  330. - ContainsVersion : If RowStateFilter is set to default value, return true
  331. for Modified Rows as they can contain Default/Original versions.
  332. 2006-02-18 Raja R Harinath <[email protected]>
  333. * DbConnectionStringBuilder.cs (ICollection.CopyTo): Use
  334. _dictionary, not 'this' in cast.
  335. 2006-02-17 Chris Toshok <[email protected]>
  336. * DbDataAdapter.cs: more 2.0 cleanup.
  337. 2006-02-17 Chris Toshok <[email protected]>
  338. * DataAdapter.cs, DataColumnMappingCollection.cs,
  339. DataColumnMapping.cs, DataTableMappingCollection.cs,
  340. DataTableMapping.cs, DbCommandBuilder.cs,
  341. DbConnectionStringBuilder.cs, DbParameterCollection.cs,
  342. DbParameter.cs: pretty major attribute work.
  343. 2006-02-17 Chris Toshok <[email protected]>
  344. * DbProviderFactory.cs: remove two methods. and mark the
  345. DbProviderSupportedClasses ctor as internal since it's not part of
  346. the public api.
  347. * DbTable.cs: remove this class from 2.0 build.. leave it for the
  348. JVM build, I guess?
  349. * RowUpdatingEventArgs.cs: this class isn't abstract in 2.0.
  350. * RowUpdatedEventArgs.cs: this class isn't abstract in 2.0.
  351. * SupportedJoinOperators.cs: new 2.0 enum.
  352. * CatalogLocation.cs: fix enum values.
  353. * GroupByBehavior.cs: same.
  354. * IdentifierCase.cs: same.
  355. * SchemaTableColumn.cs: class is static, not sealed. and add
  356. missing elements.
  357. * SchemaTableOptionalColumn.cs: same.
  358. * DbDataReader.cs: oops, add back in VisibleFieldCount (i missed
  359. it in the corcompare output), add EditorBrowsable attributes all
  360. over the place, and fix some method signatures.
  361. * DbDataUpdatableRecord.cs: remove this 2.0 file.
  362. 2006-02-17 Chris Toshok <[email protected]>
  363. * DbDataReader.cs: remove VisibleFieldCount attribute, and remove
  364. IDataReader2 and IDataRecord2 interfaces.
  365. 2006-02-13 Senganal T <[email protected]>
  366. * DbDataAdapter.cs :
  367. - FillSchema :
  368. - Add table to schema only if MissingSchemaAction is not Ignore
  369. Add schema to table if MissingSchemaAction is set to either of
  370. Add or AddWithKey
  371. - BuildSchema :
  372. - Set the Schema values only if MissingSchemaAction is set to
  373. AddWithKey
  374. 2006-01-31 Senganal T <[email protected]>
  375. * DbDataAdapter.cs :
  376. - Corrected an error in the prev checkin.. Fixes #77415
  377. 2006-01-27 Senganal T <[email protected]>
  378. * DbDataAdapter.cs :
  379. - Modified schema population to follow MissingSchemaAction and MissingMappingAction
  380. - Add a column to the Primary Key only if its not a hidden key
  381. - Added some argument checks
  382. - Removed some redundant code
  383. * DataAdapter :
  384. - Added argument checks
  385. * ExceptionHelper :
  386. - Added InvalidEnumException , a helper function to print error msg
  387. 2006-01-11 Boris Kirzner <[email protected]>
  388. * Index.cs: removed redundant call to RebuildIndex() in constructor.
  389. 2005-12-12 Konstantin Triger <[email protected]>
  390. * Key.cs: Added ContainsVersion function, refactoring.
  391. * Index.cs: Fixed Reset() to be ready for Update() calls.
  392. Otherwise the index can be rebuilt with new values inside the
  393. Update() call itself.
  394. Fixed FindIndexExact(), Update(), Delete().
  395. 2005-11-22 Konstantin Triger <[email protected]>
  396. * DbProviderFactory.cs: TARGET_JVM ifdef.
  397. 2005-11-21 Senganal T <[email protected]>
  398. * DbDataAdapter.cs
  399. * DbParameter.cs
  400. * DbTransaction.cs
  401. * DbTable.cs
  402. * DbProviderFactories.cs
  403. * DbException.cs
  404. * DbProviderFactory.cs
  405. * DbCommandBuilder.cs
  406. * DbDataReader.cs
  407. * DbParameterCollection.cs
  408. - Added stubs and other changes for ADO.NET 2.0 compatibility.
  409. * DbMetaDataCollectionNames.cs (new file)
  410. - Added DbMetaDataCollectionNames Enumeration
  411. 2005-10-24 Konstantin Triger <[email protected]>
  412. * DataContainer.cs: removed extra type validation for object container
  413. 2005-10-14 Senganal T <[email protected]>
  414. * DbDataAdapter.cs :
  415. - BuildSchema() : Set the value of DataColumn Property 'AllowDBNull'
  416. as returned by database. Fixes bug#76433.
  417. 2005-09-21 Boris Kirzner <[email protected]>
  418. * Index.cs:
  419. - Rebuild index immediately after construction.
  420. - Do not add records if they do not padd key filtration.
  421. - Do not attempt to remove records if the are not in the index.
  422. * Key.cs:
  423. - Added HasFilter property, CanContain and DependsOn methods.
  424. - Equals() uses filter expression comparison.
  425. 2005-09-07 Boris Kirzner <[email protected]>
  426. * DataContainer.cs: Do not convert value if container type
  427. is System.Object.
  428. 2005-08-08 Gert Driesen <[email protected]>
  429. * DbTypes.cs: Marked internal to fix public API.
  430. 2005-08-05 Sureshkumar T <[email protected]>
  431. * DbDataAdapter.cs:
  432. - Update (): set parameter values only after getting the
  433. appropriate command from command builder. Close reader only if it
  434. is not closed before. Use parameter's SourceVersion. Whitespace
  435. corrections to comply with standard.
  436. 2005-07-22 Sureshkumar T <[email protected]>
  437. * DataColumnMappingCollection.cs: updated attributes & attribute
  438. descriptions to match with masterinfos.
  439. 2005-07-15 Sureshkumar T <[email protected]>
  440. * DataTableMappingCollection.cs: GetTableMappingBySchemaAction:
  441. meaningful error message if mapping is missing.
  442. * DbDataAdapter.cs: Update: meaningful message if table is missing.
  443. 2005-06-22 Sureshkumar T <[email protected]>
  444. * Index.cs: Remove : length for Array.Copy (a, i+1, a, i, length -
  445. (i+1)) corrected.
  446. 2005-06-21 Sureshkumar T <[email protected]>
  447. * DbConnectionStringBuilder.cs: Implemented method for parsing
  448. connection string through "ConnectionString" property.
  449. * DbConnectionStringBuilderHelper.cs: Helper class to provide
  450. conversion between string=>.net type mapping for connection string
  451. builders. The idea is to use between other providers (odbc) as
  452. well.
  453. 2005-05-29 Boris Kirzner <[email protected]>
  454. * DbCommand.cs - added #ifdef NET_2_0 on DbCommandOptionalFeatures (not used in TARGET_JVM).
  455. * ExceptionHelper.cs - removed java references. Exceptions created on formatted text messages. Code styling fixes.
  456. * DbParameterCollection.cs - implemented indexer properties.
  457. * DbDataAdapter.cs - delagate exceptions creating to ExceptionHelper.
  458. 2005-05-25 Konstantin Triger <[email protected]>
  459. * 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
  460. 2005-05-20 Umadevi S <[email protected]>
  461. * Added file DbProviderSpecificTypePropertyAttribute.cs
  462. 2005-05-19 Umadevi S <[email protected]>
  463. * RowUpdatingEventArgs.cs - added BaseCommand property for net 2.0
  464. 2005-05-18 Konstantin Triger <[email protected]>
  465. * DbDataAdapter.cs: Initialize the schema values to defaults if the schema does not contain the information
  466. 2005-05-16 Sureshkumar T <[email protected]>
  467. * RecordCache.cs: quick fix to make build 2.0 profile (follow up
  468. for check in 2005-05-16).
  469. 2005-05-16 Konstantin Triger <[email protected]>
  470. * Index.cs: validation that the updated row belongs to the index
  471. 2005-05-02 Konstantin Triger <[email protected]>
  472. * DataContainer.cs:
  473. Added CharDataContainer, SByteDataContainer, UInt16DataContainer, UInt32DataContainer, UInt64DataContainer, DateTimeDataContainer, DecimalDataContainer
  474. SetItemFromDataRecord: Changed to work with ISafeDataRecord or through GetValue to enable conversion
  475. return DBNull.Value when the stored value is null
  476. * DbDataAdapter.cs:
  477. Ensure correct order for LoadDataRow
  478. Fixing schema creation
  479. Use NewRowArray API
  480. * DbEnumerator.cs:
  481. LoadSchema: Retrieve needed fields only
  482. * RecordCache.cs:
  483. Added Rows-to-Records mapping
  484. Added ReadIDataRecord method for correct handling of default/auto increment values
  485. * Added Index.cs: Index implementation
  486. * Added Key.cs: Index descriptor implementation
  487. 2005-04-27 Sureshkumar T <[email protected]>
  488. * DbDataReader.cs: Added static method to construct the schema
  489. table with default schema. Could be reused in many places.
  490. 2005-04-22 Sureshkumar T <[email protected]>
  491. * DbDataAdapter.cs: Moved FillTable and BuildSchema as static
  492. methods as they are not operating on the current instance. This
  493. could be reused to fill any table from a data reader.
  494. * RecordCache.cs: While disposing records, make sure that the
  495. record is not already disposed. i.e. to make sure later the same
  496. record is not reused. Implemented a static method to compare two
  497. version of records in a container.
  498. 2005-04-18 Sureshkumar T <[email protected]>
  499. * DataAdapter.cs: Implemenetd OnFillError handler.
  500. * DbDataAdapter.cs: BuildSchema (): the table to be filled might
  501. contain few additional columns as well. so mapping length should
  502. be columns' length + fields' length.
  503. 2005-03-24 Sureshkumar T <[email protected]>
  504. * DbDataAdapter.cs: Update: If SourceColumn is null, do not set
  505. value for the parameter.
  506. 2005-05-25 Umadevi S <[email protected]>
  507. * Added DbException.cs
  508. 2005-03-23 Sureshkumar T <[email protected]>
  509. * DbDataAdapter.cs: For Update, disable ReadOnly constraint
  510. temporarily before updating the row. Info from Ingo Bauersachs.
  511. SkipAllRemainingRows should also skip current row (msdn).
  512. 2005-03-22 Sureshkumar T <[email protected]>
  513. * DbDataAdapter.cs: Update (): update the rows based on the
  514. UpdateRowSource property. Process further based on the
  515. RowUpdatedEvent handler argument's Status property.
  516. Fixes bug #73587. Thanks to [email protected] (Ingo Bauersachs) for
  517. bug report and patch.
  518. * RowUpdatedEventArgs.cs: if custom error is not set, throw a
  519. default error.
  520. 2005-03-01 Sureshkumar T <[email protected]>
  521. * ConnectionStringsSectionHandler.cs: Added. configuration section
  522. handler for section "connectionStrings". This handler is a ad hoc
  523. solution till the new configuration API is available in mono.
  524. 2005-02-04 Sureshkumar T <[email protected]>
  525. * DbDataAdapter.cs (Update ()) :
  526. - Check for one return result set and map the values back to
  527. datatable.
  528. - Check for output & return value parameters and update the value
  529. back to mapped column
  530. - check for recordsAffected only after closing the reader.
  531. 2005-02-02 Sureshkumar T <[email protected]>
  532. * DbConnection.cs: Implement Dispose pattern.
  533. 2005-01-25 Atsushi Enomoto <[email protected]>
  534. * DbDataPermission.cs : Empty.Union(Empty) is Empty.
  535. 2005-01-14 Atsushi Enomoto <[email protected]>
  536. * DbDataPermissionAttribute.cs, PermissionHelper.cs :
  537. fixed some incompatible type of exception between 2.0 and 1.x.
  538. * DataContainer.cs :
  539. Wrap exceptions thrown by SetValue() within ArgumentException.
  540. 2004-12-10 Sureshkumar T <[email protected]>
  541. * DbDataAdapter.cs (BuildSchema): Add the primary key schema iff
  542. MissingSchemaAction is set to AddWithKey. Also, Add auto increment
  543. value from the source table. fixes bug #67757 and #69110.
  544. 2004-11-24 Sureshkumar T <[email protected]>
  545. * DbProviderSupportedClasses.cs: Added correct enum values.
  546. * DbConnection.cs: Missing virtual method EnlistTransaction Added.
  547. * DbCommand.cs: Implemented ProviderFactory base factory methods.
  548. 2004-11-22 Sureshkumar T <[email protected]>
  549. * DbConnectionStringBuilder.cs: Class for helping creation of db
  550. connection strings added.
  551. 2004-10-01 Sureshkumar T <[email protected]>
  552. * DbProviderFactories.cs: Implemented all the stubs. Added functionality for
  553. getting available provider factories and creating a specified provider factory.
  554. * DbProviderFactoriesConfigurationHandler.cs: Added functionality for handling
  555. DbProviderFactories configuration section.
  556. * DbProviderFactory.cs: Added protected constructor. SupportedClasses property
  557. is made abstract.
  558. 2004-09-14 Sebastien Pouliot <[email protected]>
  559. * DbDataPermission.cs: Implemented Intersect, IsSubsetOf and Union.
  560. Implementation isn't complete as the restrictions seems to change the
  561. expected results (breaking some rules like x.IsSubsetOf (x) == false).
  562. Better (real-world) tests cases are required.
  563. * PermissionHelper.cs: Fixed small differences between System.Data.dll
  564. validations wrt to mscorlib.dll (XML and PermissionState).
  565. 2004-09-13 Sebastien Pouliot <[email protected]>
  566. * DbConnectionOptions.cs: New class for Fx 2.0. Partial implementation
  567. to support new methods in DBDataPermission.
  568. * DbConnectionString.cs: Updated class to split from/inherit
  569. DbConnectionOptions class.
  570. * DbDataPermission.cs: Implemented Add, Clear, Copy, ToXml methods and
  571. completed constructors.
  572. * DbDataPermissionAttribute.cs: Completed/fixed class.
  573. * PermissionHelper.cs: Helper methods to create permission classes.
  574. 2004-08-31 Francisco Figueiredo Jr. <[email protected]>
  575. * 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.
  576. 2004-07-21 Umadevi S <[email protected]>
  577. * DbDataRecord.cs - Fix for bug 58163. Return DBNull instead of null
  578. 2004-07-07 Umadevi S <[email protected]>
  579. * DataContainer.cs :CheckedforNull before calling the relavant setmethods in each of the
  580. SetItemForDataRecord method for the DateTimeClass
  581. 2004-06-24 Atsushi Enomoto <[email protected]>
  582. * DataColumnMappingCollection.cs : fixed typo.
  583. * DbDataAdapter.cs : column mappings were not filled.
  584. 2004-06-24 Atsushi Enomoto <[email protected]>
  585. * DataTableMapping.cs : Clone() should also clone ColumnMappings.
  586. 2004-06-18 Umadevi S <[email protected]>
  587. * DataContainer.cs - CheckedforNull before calling the relavant setmethods in each of the
  588. SetItemForDataRecord method for all the classes.
  589. 2004-06-17 Boris Kirzner <[email protected]>
  590. * RecordCache.cs : Added CopyRecord mathod that copies single record from one table to another.
  591. 2004-06-17 Boris Kirzner <[email protected]>
  592. * Datacontainer.cs :
  593. - Store and retreival of null and DBNull values reviewed.
  594. - Added GetInt64 to support AutoIncrement of DataColumn.
  595. - Added missing CopyValue method to BitDataContainer.
  596. - Added FillValues method to propagate single value to whole container.
  597. 2004-06-10 Umadevi S <[email protected]>
  598. * DataTableMappingCollection.cs - fixed nunit testcase errors
  599. IndexOfDataSetTable method
  600. 2004-06-09 Umadevi S <[email protected]>
  601. * DataTableMappingCollection.cs - fixed nunit testcase errors
  602. - Add, GetByDataSetTable,Insert, Remove, RemoveAt methods.
  603. 2004-06-09 Umadevi S <[email protected]>
  604. * DataColumnMappingCollection.cs - fixed nunit testcase errors
  605. - GetByDataSetColumn,IndexOfDataSetColumn, Remove methods.
  606. 2004-06-08 Umadevi S <[email protected]>
  607. * DataColumnMappingCollection.cs - fixed nunit testcase errors.
  608. - remove, removeat, contains methods.
  609. 2004-06-04 Gert Driesen <[email protected]>
  610. * DataAdapter.cs: added missing protected ctor
  611. * DbDataAdapter.cs: added stub for missing protected ctor
  612. * DbDataPermission.cs: added stubs for missing protected
  613. ctors, added stub for missing Clear method
  614. 2004-06-02 Gert Driesen <[email protected]>
  615. * DataColumnMappingCollection.cs: added missing attributes on
  616. indexers
  617. 2004-05-27 Boris Kirzner <[email protected]>
  618. * DataContainer.cs : Bug fixes in BitDataContainer.get_Item and StringDataContainer.SetValue .
  619. 2004-05-20 Gert Driesen ([email protected])
  620. * DbDataPermissionAttribute.cs: change AllowMultiple and
  621. Inherited to match .NET
  622. 2004-05-19 Boris Kirzner <[email protected]>
  623. * Datacontainer.cs : CompareValues reviewed. set_Item and get_Item of null and DBNull values in case of DataContainers
  624. for primitive types reviewed. Added check for null values when reading from IDataRecord.
  625. 2004-05-19 Boris Kirzner <[email protected]>
  626. * RecordCache.cs - added. Each instance of record cache belongs to specific table
  627. and manages pool of records ( indexes into data containers) to be used by data rows.
  628. * DataContainer.cs - added. Provides implementation for data containers that holds data in arrays
  629. of primitives or objects. Each data container belongs to specific DataColumn.
  630. * DbDataAdapter.cs - changes to complete data storage redesign. Bug fix in FillTable
  631. ( to fetch exact number of records required ).
  632. 2004-05-13 Umadevi S ([email protected])
  633. * DbDataPermissionAttribute.cs - Added KeyRestrictions property with a TODO tag
  634. 2004-05-09 Gert Driesen ([email protected])
  635. * ComparerFactory.cs: marked internal
  636. 2003-04-26 Boris Kirzner <[email protected]>
  637. * DataColumnMappingCollection.cs : Small fix in exception message thrown.
  638. 2003-04-25 Boris Kirzner <[email protected]>
  639. * DbDataAdapter.cs : Fixed bug in Fill :
  640. - Reader can have empty results (fo example from UPDATE or DELETE).
  641. - Reader can have results with no rows (SELECT that returns 0 rows but have columns)
  642. - In FillTable - skip rows only once for each table.
  643. 2003-04-14 Juraj Skripsky <[email protected]>
  644. * DbDataAdapter.cs : Refactoring of Fill. New private method
  645. FillTable does most of the work now. Use int[] instead of
  646. hashtable for mapping. Move creation of tableArray[] outside
  647. of loop.
  648. 2004-03-12 Andreas Nahr <[email protected]>
  649. * DbDataPermissionAttribute.cs: Added .Net 1.1 marks
  650. * DataColumnMapping.cs: DO NOT USE the consts scheme if types can be referenced directly!
  651. * DataTableMapping.cs: DO NOT USE the consts scheme if types can be referenced directly!
  652. * DataColumnMappingConverter: Added stub
  653. * DataTableMappingConverter: Added stub
  654. 2004-03-03 Eran Domb <[email protected]>
  655. * ComparerFactory.cs : Added.
  656. 2004-01-10 Atsushi Enomoto <[email protected]>
  657. * DbDataPermission.cs : tiny fix to pass OleDbPermission.
  658. 2004-01-09 Atsushi Enomoto <[email protected]>
  659. * DbDataPermission.cs : .ctor(PermissionState state) should not call
  660. obsolete .ctor(state, allowBlankPassword). csc reports an error.
  661. 2003-12-30 Gonzalo Paniagua Javier <[email protected]>
  662. * DbDataAdapter.cs: handle MissingShemaAction.AddWithKey, call
  663. AcceptChanges in Update when a CommandBuilder is used and
  664. correctly fill information about primary keys in FillSchema.
  665. Patch from Sergei Malinin ([email protected]).
  666. 2003-12-23 Tim Coleman <[email protected]>
  667. * DbConnectionString.cs:
  668. Some implementation
  669. * DbProviderFactory.cs:
  670. Fix typo to make CLS compliant
  671. 2003-12-16 Jackson Harper <[email protected]>
  672. * SchemaTableOptionalColumn.cs: Add to fix default build
  673. 2003-12-16 Tim Coleman <[email protected]>
  674. * CatalogLocation.cs DbCommand.cs DbCommandBuilder.cs
  675. * DbCommandOptionalFeatures.cs DbCommandSet.cs DbConnection.cs
  676. * DbConnectionString.cs DbDataSourceEnumerator.cs
  677. * DbDataUpdatableRecord.cs DbParameter.cs DbParameterCollection.cs
  678. * DbProviderConfigurationHandler.cs DbProviderFactories.cs
  679. * DbProviderFactoriesConfigurationHandler.cs DbProviderFactory.cs
  680. * DbProviderSupportedClasses.cs DbTable.cs DbTransaction.cs
  681. * GroupByBehavior.cs IdentifierCase.cs SchemaLocation.cs
  682. * SchemaTableColumn.cs:
  683. New stubs added for .NET 1.2
  684. * DataAdapter.cs DataColumnMapping.cs DataColumnMappingCollection.cs
  685. * DataTableMapping.cs DataTableMappingCollection.cs DbDataAdapter.cs
  686. * DbDataPermission.cs DbDataPermissionAttribute.cs DbDataRecord.cs
  687. * FieldNameLookup.cs SchemaInfo.cs:
  688. Changes made for .NET 1.2
  689. 2003-10-22 Eran Domb <[email protected]>
  690. * DbDataAdapter.cs : Check if there is mapping to avoid exception.
  691. 2003-11-26 Tim Coleman <[email protected]>
  692. * DbDataReader.cs: Add new stub class
  693. 2003-11-23 Pedro Martínez Juliá <[email protected]>
  694. * DbDataAdapter.cs: Call command dispose in self dispose method. We
  695. need to dispose the connections and other stuff stored in the
  696. commands.
  697. 2003-11-10 Pedro Martínez Juliá <[email protected]>
  698. * DataColumnMappingCollection.cs: Fix a missing exception when the
  699. required mapping is not in the collection. MS.NET throws an
  700. exception there.
  701. 2003-10-22 Eran Domb <[email protected]>
  702. * DbDataAdapter.cs (Fill): add only the mapped column to the dataTable (not all columns of dataReader).
  703. Also closing the dataReader if an exception is thrown.
  704. (Fill): the same as above.
  705. (SetupSchema): in now return string (the table name).
  706. (GetFillParameters): fix a bug.
  707. (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.
  708. (Update): first open the connection if needed. Catch an exception of the ExecuteQuery.
  709. 2003-09-30 Duncan Mak <[email protected]>
  710. Patch from Eran Domb <[email protected]>.
  711. * DbDataAdapter.cs (Fill): Fixed an Exception from being thrown.
  712. 2003-09-25 Duncan Mak <[email protected]>
  713. * DbDataAdapter.cs (Fill): Patch from Eran Domb, <[email protected]>.
  714. Fixes a possible NullReferenceException, more details here:
  715. http://lists.ximian.com/archives/public/mono-devel-list/2003-September/002116.html
  716. 2003-09-21 eran <[email protected]>
  717. * DbDataRecord.cs: The method
  718. System.Data.Common.DbDataRecord.GetValues(object[] values) did not
  719. put the values of the DbDataRecord into values parameter.
  720. 2003-08-26 Gonzalo Paniagua Javier <[email protected]>
  721. * DbDataAdapter.cs: provide a Type for ToArray to avoid invalid cast
  722. exception. Thanks to Mark Easton <[email protected]>.
  723. 2003-07-31 Duncan Mak <[email protected]>
  724. * DataAdapter.cs (CloneInternals): Mark with ObsoleteAttribute for
  725. NET_1_1.
  726. 2003-03-21 Alan Tam <[email protected]>
  727. * DbDataAdapter.cs: Update now uses correct DataRowVersion
  728. when accessing the data.
  729. 2003-03-17 Aleksey Demakov <[email protected]>
  730. * DbDataAdapter.cs: BuildSchema now uses ColumnName instead
  731. of BaseColumnName (bug #39830) for DataColumn names.
  732. BaseTableName is no longer taken into account as well.
  733. 2003-02-28 Aleksey Demakov <[email protected]>
  734. * DbDataAdapter.cs: Update (DataSet) updates the default
  735. table only.
  736. 2003-02-25 Alan Tam <[email protected]>
  737. * DbDataAdapter.cs: Added support for filling when schema is present.
  738. Fixed incorrect behavior when ColumnMapping is present
  739. when more than one fields have the same name. Implemented Dispose.
  740. Fixed error when there is no ColumnMapping at all.
  741. Still have some problems in finding the correct TableMapping
  742. because the SourceTable name is not present in BuildSchema
  743. 2003-02-24 Aleksey Demakov <[email protected]>
  744. * DbDataAdapter.cs: The original code might pass a null DataTableMapping
  745. value which is then used to create a RowUpdatingEventArgs
  746. instance. So RowUpdatingEvent handler (for instance
  747. CommandBuilder) could get null DataTableMapping which
  748. might be unexpected. The patch makes sure that a non-null
  749. DataTableMapping is passed.
  750. 2003-01-26 Gonzalo Paniagua Javier <[email protected]>
  751. * DbEnumerator.cs: why does the runtime throw an invalid cast here? The
  752. object is an Int16... Gotta fill a bug report and when fixed undo this
  753. patch.
  754. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  755. * DbDataRecord.cs: return DbNull.Value in GetValue () if value is null.
  756. 2002-10-31 Daniel Morgan <[email protected]>
  757. * SchemaInfo.cs: added missing properties to fix mcs build
  758. 2002-05-05 Miguel de Icaza <[email protected]>
  759. * DataTableMapping.cs, DataTableMappingCollection.cs: comment out
  760. interfaces we do not implement yet.
  761. * DbDataAdapter.cs: Stub IEnumerable, comment out interfaces
  762. we do not implement yet.
  763. * DbDataPermissionAttribute.cs: call base constructor.