Update database.php

This commit is contained in:
Namhyeon Go 2020-02-20 14:30:25 +09:00 committed by GitHub
parent f6b3fd69c2
commit b99c86075c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -382,7 +382,12 @@ if(!is_fn("exec_db_bulk_push")) {
if(!is_fn("exec_db_bulk_end")) { if(!is_fn("exec_db_bulk_end")) {
function exec_db_bulk_end($bulkid, $tablename, $bindkeys) { function exec_db_bulk_end($bulkid, $tablename, $bindkeys) {
$result = false;
$rows = get_shared_var("bulk_" . $bulkid); $rows = get_shared_var("bulk_" . $bulkid);
if(count($rows) == 0) {
write_common_log("bulk ended: empty", "system/database");
}
$sql = "insert into `%s` (%s) values (%s)"; $sql = "insert into `%s` (%s) values (%s)";
$s1 = $tablename; $s1 = $tablename;
@ -395,10 +400,11 @@ if(!is_fn("exec_db_bulk_end")) {
$s3 = implode("), (", $s3a); $s3 = implode("), (", $s3a);
$sql = sprintf($sql, $s1, $s2, $s3); $sql = sprintf($sql, $s1, $s2, $s3);
$result = exec_db_query($sql);
write_common_log("bulk ended: " . substr($sql, 0, 200) . "...", "system/database"); write_common_log("bulk ended: " . substr($sql, 0, 200) . "...", "system/database");
return exec_db_query($sql); return $result;
} }
} }