java jdbc addBatch()提交mysql速度过慢
伊谢尔伦
伊谢尔伦 2017-04-18 10:27:51
0
2
784

我用的是java jdbc的addBatch批量插入数据,但是速度好慢有什么好的方案吗
差不多插入1000条数据需要30s,下面贴出代码大家看看哪里不规范,或者给个更快的方法

//jdbc构造的URL是
private static final String URL="jdbc:mysql://localhost:3306/daan?useUnicode=true&characterEncoding=UTF8&rewriteBatchedStatements=true";
public static void writeData(LinkedList<Entity> entities)
    {
        con = DBUtil.getCon();
        String sql = "INSERT INTO `test` (`title`,`url`,`year`,`grade`,`subject`,`publish`) VALUES (?,?,?,?,?,?)";
        try {
            PreparedStatement preparedStatement = con.prepareStatement(sql);
            for (int i = 0;i<entities.size();i++)
            {
                Entity t = entities.get(i);
                preparedStatement.setString(1,t.getTitle());
                preparedStatement.setString(2,t.getUrl());
                preparedStatement.setInt(3,t.getYear());
                preparedStatement.setInt(4,t.getGrade());
                preparedStatement.setInt(5,t.getSubject());
                preparedStatement.setString(6,t.getPublish());
                preparedStatement.addBatch();
                //System.out.println(preparedStatement.toString());
                preparedStatement.execute();
            }
        } catch (SQLException e) {
            System.out.println("数据库错误"+e.getMessage());
        }
    }
伊谢尔伦
伊谢尔伦

小伙看你根骨奇佳,潜力无限,来学PHP伐。

全員に返信(2)
Peter_Zhu

ここでは、preparedStatement.addBatch() を実行した後に直接 prepareStatement.execute() を呼び出します。この操作は、ループが 1000 回実行されるたびに、preparedStatement.executeBatch() を呼び出すことと同じです。

いいねを押す +0
刘奇

JDBC バッチ挿入

いいねを押す +0
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!