PHP MySQLi多个插入

时间:2009-09-28 16:33:42

标签: php mysqli

我想知道准备好的语句是否与具有多个VALUES的普通mysql_query相同。

INSERT INTO table (a,b) VALUES ('a','b'), ('c','d');

VS

$sql = $db->prepare('INSERT INTO table (a,b) VALUES (?, ?);

如果我在循环中使用预处理语句,MySQL是否在后台优化插入工作就像在第一段代码中那样工作,或者就像在循环中运行第一段代码一样每次都值?

3 个答案:

答案 0 :(得分:10)

我继续进行测试,其中一个查询使用预准备语句,另一个构建整个查询然后执行该测试。我可能没有做出我想要易于理解的内容。

这是我的测试代码。我正在考虑准备好的语句,直到调用$ stmt-> close()来优化它或其他东西。虽然因为使用real_escape_string构建查询的测试速度至少快10倍,但情况似乎并非如此。

<?php

$db = new mysqli('localhost', 'user', 'pass', 'test');

$start = microtime(true);
$a = 'a';
$b = 'b';

$sql = $db->prepare('INSERT INTO multi (a,b) VALUES(?, ?)');
$sql->bind_param('ss', $a, $b);
for($i = 0; $i < 10000; $i++)
{
    $a = chr($i % 1);
    $b = chr($i % 2);
    $sql->execute();
}
$sql->close();

echo microtime(true) - $start;

$db->close();

?>

答案 1 :(得分:0)

如果在循环中使用预准备语句,则每次运行原始查询将比使用预准备语句只需要执行一次分析更有效。所以不,在某种程度上它是不一样的。

答案 2 :(得分:0)

public function insertMulti($table, $columns = array(), $records = array(), $safe = false) {
    self::$counter++;
    //Make sure the arrays aren't empty
    if (empty($columns) || empty($records)) {
        return false;
    }

    // If set safe to true: set records values to html real escape safe html
    if($safe === true){
        $records = $this->filter($records);
    }

    //Count the number of fields to ensure insertion statements do not exceed the same num
    $number_columns = count($columns);

    //Start a counter for the rows
    $added = 0;

    //Start the query
    $sql = "INSERT INTO " . $table;

    $fields = array();
    //Loop through the columns for insertion preparation
    foreach ($columns as $field) {
        $fields[] = '`' . $field . '`';
    }
    $fields = ' (' . implode(', ', $fields) . ')';

    //Loop through the records to insert
    $values = array();
    foreach ($records as $record) {
        //Only add a record if the values match the number of columns
        if (count($record) == $number_columns) {
            $values[] = '(\'' . implode('\', \'', array_values($record)) . '\')';
            $added++;
        }
    }
    $values = implode(', ', $values);

    $sql .= $fields . ' VALUES ' . $values;
    //echo $sql;
    $query = $this->dbConnection->query($sql);

    if ($this->dbConnection->error) {
        $this->errorLog($this->dbConnection->error, $sql);
        return false;
    } else {
        return $added;
    }
}

此函数首先准备一个具有多个行值的INSERT查询并将其插入一次。但这不是一次性批量插入。