mysql+php+pdo批量添加大數據

1.使用insert into插入html

  ini_set('max_execution_time','0');//限制超時時間,由於第一種時間較長,索性設爲0不限制
  $pdo = new PDO("mysql:host=localhost;dbname=oradt_cloud1520","root","123456");mysql

    for($i=0; $i<100000; $i++){sql

    $str = strrand(32);ui

  $pdo -> exec("insert into scan_card_picture(uuid,account_id,handle_state,created_time,status,from_account,accuracy,ifupdate) values('".$str."','A7kVzZYK2EyAXm2jIVVpF0ls4M2LS00000001044','handled','2015-09-17 07:55:10','active','admin@qq.com','90',1)");
  }
server

  使用這種方法,時間大概得1個多小時,慢的很離譜的,實在沒辦法,就使用了第二種。htm

2. ini_set('max_execution_time','0');
  $pdo = new PDO("mysql:host=localhost;dbname=oradt_cloud1520","root","123456");blog

  $sql = "insert into scan_card_picture(uuid,account_id,handle_state,created_time,status,from_account,accuracy,ifupdate) values";pdo

  for($i=0; $i<100000; $i++){
    $str = strrand(32);
    $sql .="('".$str."','A7kVzZYK2EyAXm2jIVVpF0ls4M2LS00000001044','handled','2015-09-17 07:55:10','active','admin@qq.com','90',1),";
  }
  $sql = substr($sql,0,strlen($sql)-1);
  var_dump($sql);
  if($pdo -> exec($sql)){
    echo "插入成功!";
    echo $pdo -> lastinsertid();
  }
io

  使用這種方法,添加10萬條時間也就是一分鐘吧。肯能運行過程當中會報錯PDO::exec(): MySQL server has gone away ;能夠在mysql控制檯裏面set global max_allowed_packet=2*1024*1024*10;  (詳細參考http://www.cnblogs.com/zlx7/p/4763207.html)ast

3.網上查的還能夠使用事物提交(每10條提交一次均可以,可是時間沒有第二種快),你們能夠本身試試。。

相關文章
相關標籤/搜索