OutSystems Forge 日本語データベース

BulkInsert

※Forge全件データの日本語検索サービスをご利用になりたい場合は、こちらまでお問合せください。

Forge英文サイト

2015-11-24 1.0.0 João Pedro Abreu 9.1.0.8 All All Components, Libraries
大量のレコードをデータベーステーブルにすばやくインサートします。
大量のレコードをデータベーステーブルにすばやくインサートします。 MySQL、Oracle、SQL Serverをサポートします。 複数のエンティティへの同時挿入をサポートしていません。拡張に渡されるレコードリストには、エンティティタイプが1つだけ含まれている必要があります。 バルク挿入操作では、各DBMSおよびアプリケーションサーバーに固有のメカニズムが使用されるため、パフォーマンスが異なる場合があります。 SQL Serverでは、SqlBulkCopyクラスを使用しました。 Oracle + .NETでは、ODP.NETの配列バインディングを使用しました。 Oracle + Javaでは、JDBCのバッチ・ステートメントを使用しました。 MySQL + .NETでは、MySQLDataAdapterクラスを使用しました。 MySQL + Javaはテストされていないため、おそらく動作しません。

[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
戻る