溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

教你如何6秒鐘往MySQL插入100萬(wàn)條數(shù)據(jù)的實(shí)現(xiàn)

發(fā)布時(shí)間:2020-09-28 19:19:18 來(lái)源:腳本之家 閱讀:238 作者:Bei-Zhen 欄目:開(kāi)發(fā)技術(shù)

一、思路

MySQL中插入1000000條數(shù)據(jù)只花了6秒鐘!

關(guān)鍵點(diǎn):

1.使用PreparedStatement對(duì)象

教你如何6秒鐘往MySQL插入100萬(wàn)條數(shù)據(jù)的實(shí)現(xiàn)

教你如何6秒鐘往MySQL插入100萬(wàn)條數(shù)據(jù)的實(shí)現(xiàn)

2.rewriteBatchedStatements=true 開(kāi)啟批量插入,插入只執(zhí)行一次,所有插入比較快。

教你如何6秒鐘往MySQL插入100萬(wàn)條數(shù)據(jù)的實(shí)現(xiàn)

二、 代碼

package test0823.demo1;

import java.sql.*;

/**
 * @author : Bei-Zhen
 * @date : 2020-08-24 0:43
 */
public class JDBC2 {

  //static int count = 0;

  public static void main(String[] args) {

    long start = System.currentTimeMillis();
    conn();
    long end = System.currentTimeMillis();
    System.out.println("耗時(shí):" + (end - start)/1000 + "秒");
  }

  public static void conn(){
    //1.導(dǎo)入驅(qū)動(dòng)jar包
    //2.注冊(cè)驅(qū)動(dòng)(mysql5之后的驅(qū)動(dòng)jar包可以省略注冊(cè)驅(qū)動(dòng)的步驟)
    //Class.forName("com.mysql.jdbc.Driver");
    //3.獲取數(shù)據(jù)庫(kù)連接對(duì)象
    Connection conn = null;
    PreparedStatement pstmt = null;
    {
      try {
        //"&rewriteBatchedStatements=true",一次插入多條數(shù)據(jù),只插入一次
        conn = DriverManager.getConnection("jdbc:mysql:///test?" + "&rewriteBatchedStatements=true","root","root");
        //4.定義sql語(yǔ)句
        String sql = "insert into user values(default,?,?)";
        //5.獲取執(zhí)行sql的對(duì)象PreparedStatement
        pstmt = conn.prepareStatement(sql);
        //6.不斷產(chǎn)生sql
        for (int i = 0; i < 1000000; i++) {
          pstmt.setString(1,(int)(Math.random()*1000000)+"");
          pstmt.setString(2,(int)(Math.random()*1000000)+"");
          pstmt.addBatch();
        }
        //7.往數(shù)據(jù)庫(kù)插入一次數(shù)據(jù)
        pstmt.executeBatch();
        System.out.println("添加1000000條信息成功!");

      } catch (SQLException e) {
        e.printStackTrace();
      } finally {
        //8.釋放資源
        //避免空指針異常
        if(pstmt != null) {
          try {
            pstmt.close();
          } catch (SQLException e) {
            e.printStackTrace();
          }
        }

        if(conn != null) {
          try {
            conn.close();
          } catch (SQLException e) {
            e.printStackTrace();
          }
        }
      }
    }

  }

}

三、運(yùn)行結(jié)果

添加1000000條信息成功!
耗時(shí):6秒

教你如何6秒鐘往MySQL插入100萬(wàn)條數(shù)據(jù)的實(shí)現(xiàn)

教你如何6秒鐘往MySQL插入100萬(wàn)條數(shù)據(jù)的實(shí)現(xiàn)

到此這篇關(guān)于教你如何6秒鐘往MySQL插入100萬(wàn)條數(shù)據(jù)的實(shí)現(xiàn)的文章就介紹到這了,更多相關(guān)MySQL插入100萬(wàn)條數(shù)據(jù)內(nèi)容請(qǐng)搜索億速云以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持億速云!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI