Insert to Index
doing : No.{$from} ";
global $dbh_word_index;
$dns = _FILE_DB_WORD_INDEX_;
$dbh_word_index = new PDO($dns, _DB_USERNAME_, _DB_PASSWORD_, array(PDO::ATTR_PERSISTENT => true));
$dbh_word_index->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_WARNING);
if (($fpoutput = fopen(_DIR_CSV_PALI_CANON_WORD_INDEX_ . "/{$from}.csv", "r")) !== false) {
// 开始一个事务,关闭自动提交
$dbh_word_index->beginTransaction();
$query = "INSERT INTO "._TABLE_WORD_INDEX_." (id , word , word_en , count , normal , bold , is_base , len ) VALUES (?,?,?,?,?,?,?,?)";
$stmt = $dbh_word_index->prepare($query);
$count = 0;
while (($data = fgetcsv($fpoutput, 0, ',')) !== false) {
$stmt->execute($data);
$count++;
}
// 提交更改
$dbh_word_index->commit();
if (!$stmt || ($stmt && $stmt->errorCode() != 0)) {
$error = $dbh_word_index->errorInfo();
echo "error - $error[2]
";
$log .= "$from, $FileName, error, $error[2] \r\n";
} else {
echo "updata $count recorders.
";
$log .= "updata $count recorders.\r\n";
}
} else {
echo "齐活!功德无量!all done!
";
exit;
}
echo "";
echo "正在载入:" . ($from + 1) . "——" . $filelist[$from + 1][0];
?>