| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?php
- /*
- 生成 巴利原文段落表
- */
- require_once __DIR__."/../config.php";
- require_once __DIR__.'/../public/_pdo.php';
- echo "Insert Word Index To DB".PHP_EOL;
- $dirLog = _DIR_LOG_ . "/";
- $log = "";
- //PostgreSQL
- define("_DB_WORD_INDEX_", _DB_ENGIN_.":host="._DB_HOST_.";port="._DB_PORT_.";dbname="._DB_NAME_.";user="._DB_USERNAME_.";password="._DB_PASSWORD_.";");
- define("_TABLE_", "word_indexs");
- $dns = _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_EXCEPTION);
- #删除
- try{
- $query = "DELETE FROM "._TABLE_;
- $stmt = $dbh_word_index->prepare($query);
- $stmt->execute();
- }catch(PDOException $e){
- fwrite(STDERR,$e->getMessage());
- exit;
- }
- $scan = scandir(_DIR_CSV_PALI_CANON_WORD_INDEX_);
- foreach($scan as $filename) {
- $filename = _DIR_CSV_PALI_CANON_WORD_INDEX_."/".$filename;
- if (is_file($filename)) {
- echo "doing ".$filename.PHP_EOL;
- if (($fpoutput = fopen($filename, "r")) !== false) {
- // 开始一个事务,关闭自动提交
- $dbh_word_index->beginTransaction();
- $query = "INSERT INTO "._TABLE_." (id , word , word_en , count , normal , bold , is_base , len )
- VALUES ( ?, ?, ?, ?, ?, ?, ?, ?)";
- try{
- $stmt = $dbh_word_index->prepare($query);
- }catch(PDOException $e){
- fwrite(STDERR,"error:".$e->getMessage()." At Line: ".$e->getLine().PHP_EOL);
- exit;
- }
-
-
- $count = 0;
- while (($data = fgetcsv($fpoutput, 0, ',')) !== false) {
- try{
- $stmt->execute($data);
- }catch(PDOException $e){
- fwrite(STDERR,"error:".$e->getMessage()." At Line: ".$e->getLine().PHP_EOL);
- fwrite(STDERR,"error-data:".implode(",",$data).PHP_EOL);
- fwrite(STDERR,"error-data-count:".count($data).PHP_EOL);
- exit;
- }
-
- $count++;
- }
- // 提交更改
- $dbh_word_index->commit();
- if (!$stmt || ($stmt && $stmt->errorCode() != 0)) {
- $error = $dbh_word_index->errorInfo();
- echo "error - $error[2]".PHP_EOL;
- $log .= "$filename, error, $error[2] \r\n";
- } else {
- echo "updata $count recorders.".PHP_EOL;
- $log .= "updata $count recorders.\r\n";
- }
- }else{
- echo "open file error".PHP_EOL;
- }
-
- }
- }
- echo "齐活!功德无量!all done!".PHP_EOL;
- ?>
|