Tutorial about Using multi-threading in jdbc

前端 未结 7 851
别跟我提以往
别跟我提以往 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条回答
  •  执笔经年
    2020-12-24 01:22

    As far as I know,the JDBC Bridge uses synchronized methods to serialize all calls to ODBC so using mutliple threads won't give you any performance boost unless it boosts your application itself.

提交回复
热议问题