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