JDBC - 学习6 -Betach - 批处理测试

10 篇文章 0 订阅

运行时间以我自己的手提电脑为例


批处理差异
MySQL:默认关闭批处理 -- 自行百度开启批处理功能
Oracle:默认开启批处理

测试:执行10K条同样的SQL语句的运行时间 – oracle数据库

1. 不使用Betach、使用Statement

  运行时间:15秒

@Test
public void test7() throws Exception {
    Connection conn = ConnectionTest.getConnection5();

    Statement statement = conn.createStatement();

    long start = System.currentTimeMillis();
    for (int i = 0; i < 10000; i++) {
        String sql = "insert into imgTable(name) values ('name_" + (10000 + i + 1) + "')";
        statement.execute(sql);
    }
    long end = System.currentTimeMillis();

    System.out.println((end - start) / 1000 + "秒");

    ConnectionTest.closeResource(conn, statement, null);
}

2. 不使用Betach、使用PreparedStatement

  运行时间:5秒

@Test
public void test6() throws Exception {
    Connection conn = ConnectionTest.getConnection5();

    String sql = "insert into imgTable(name) values ( ?)";
    PreparedStatement ps = conn.prepareStatement(sql);

    long start = System.currentTimeMillis();
    for (int i = 0; i < 10000; i++) {
        ps.setObject(1, "name_" + i);
        ps.execute();
    }
    long end = System.currentTimeMillis();

    System.out.println((end - start) / 1000 + "秒");

    ConnectionTest.closeResource(conn, ps, null);
}

3. 使用Betach、PreparedStatement

  运行时间:257毫秒

@Test
public void test8() throws Exception {
    Connection conn = ConnectionTest.getConnection3();

    String sql = "insert into imgTable(name) values (?)";
    PreparedStatement ps = conn.prepareStatement(sql);

    long start = System.currentTimeMillis();
    for (int i = 0; i < 10000; i++) {
        ps.setObject(1, "name_" + i);

        // 1. 将SQL语句先存起来
        ps.addBatch();

        // 2. 一旦存起来的SQL语句有500条,则一次性执行存起来的SQL语句,并且清空运行的SQL语句
        if ((i + 1) % 500 == 0) {
            ps.executeBatch();
            ps.clearBatch();
        }

    }

    // 3. 防止还有存起来的SQL语句没有执行
    ps.executeBatch();
    ps.clearBatch();
    long end = System.currentTimeMillis();

    System.out.println((end - start) + "豪秒");

    ConnectionTest.closeResource(conn, ps, null);
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值