ChangeLog 20 KB

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