Tutorial about Using multi-threading in jdbc

前端 未结 7 858
别跟我提以往
别跟我提以往 2020-12-24 00:54

Our company has a Batch Application which runs every day, It does some database related jobs mostly, import data into database table from file for example.

There are

7条回答
  •  萌比男神i
    2020-12-24 01:06

    The fastest way I've found to insert large numbers of records into Oracle is with array operations. See the "setExecuteBatch" method, which is specific to OraclePreparedStatement. It's described in one of the examples here: http://betteratoracle.com/posts/25-array-batch-inserts-with-jdbc

提交回复
热议问题