在 MySQL 中执行准备好的语句时出错

Error when executing prepared statement in MySQL

当我尝试 运行 以下准备和执行 INSERT 语句的函数时,我一直收到来自 MySQL 的错误:

public static function addProduct($db, $barcode, $product_name, $price) {
    $quantity =  1;

    $query = "INSERT INTO Product (BarCode, PName, Price, QuantityInStock) VALUES (?, ?, ?, ?)";
    $stmt = $db->stmt_init();
    $stmt->prepare($query);
    $stmt->bind_param('isii', $barcode, $product_name, $price, $quantity);
    $stmt->execute();

    $result = $db->query($query);
    if (!$result || $db->affected_rows == 0) {
        echo "<h2>ARG: *$query* . ERROR: " . $db->error . "</h2>";
    }
}

这是我得到的输出:

ARG: INSERT INTO Product (BarCode, PName, Price, QuantityInStock) VALUES (?, ?, ?, ?) . ERROR: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '?, ?, ?, ?)' at line 1

这些是我要插入的正确字段,每个变量都有一个值。这些也是 bind_param() 中的正确类型。

有人有什么想法吗?谢谢。

这是你的问题:

$result = $db->query($query);

您是运行第二次查询。