2015-11-24
1.0.0
João Pedro Abreu
9.1.0.8
All
All
Components, Libraries
[Overview]
Quickly insert large quantities of records into a database table.
[Detail]
Quickly insert large quantities of records into a database table. Supports MySQL, Oracle and SQL Server.
Doesn't support simultaneous inserts into multiple entities - the record list passed into the extension must contain only one entity type.
The bulk insert operations use mechanisms that are specific to each DBMS and Application Server, so the performance may vary. For SQL Server, we used the SqlBulkCopy class
For Oracle + .NET, we used ODP.NET’s array binding
For Oracle + Java we used JDBC’s batch statements
For MySQL + .NET we used the MySQLDataAdapter class
MySQL + Java wasn't tested, so it probably doesn't work