gpt4 book ai didi

php - MySQLi 无法准备语句

转载 作者:行者123 更新时间:2023-12-01 00:14:11 25 4
gpt4 key购买 nike

我在脚本 room.php 中运行两个查询。两者都是使用MySQLi prepared statements,它们的代码如下:

/* Get room name */
$stmt = $mysqli->prepare('SELECT name FROM `rooms` WHERE r_id=?');
$stmt->bind_param('i', $roomID);
$stmt->execute();
$stmt->bind_result($roomName)

/* Add this user to the room */
$stmt = $mysqli->prepare('INSERT INTO `room_users` (r_id, u_id) VALUES (?, ?)');
$stmt->bind_param('ii', $roomID, $_SESSION['userID']);
$stmt->execute();

当我运行脚本时,出现此错误:

Fatal error: Call to a member function bind_param() on a non-object in C:\wamp\www\room.php on line 24

这是第二个查询。如果我从脚本中删除第一个查询,一切运行正常。同样,如果我删除第二个查询。这让我相信存在问题,因为我正在重用 $stmt 对象。如果我尝试使用 $stmt2 进行第二个查询,我仍然会遇到错误。

我所有的数据库表和字段都存在,所以查询没有问题。

最佳答案

所有 mysqli 函数/方法都可能失败,在这种情况下它们将返回 false。 IE。如果 prepare() 失败 $stmt 不是您可以调用方法的对象,而是 bool(false)。您必须检查返回值并添加一些错误处理,例如

$stmt = $mysqli->prepare('SELECT name FROM `rooms` WHERE r_id=?');
if ( !$stmt ) {
printf('errno: %d, error: %s', $mysqli->errno, $mysqli->error);
die;
}

$b = $stmt->bind_param('i', $roomID);
if ( !$b ) {
printf('errno: %d, error: %s', $stmt->errno, $stmt->error);
}

$b = $stmt->execute();
if ( !$b ) {
and so on and on

参见 http://docs.php.net/mysqli-stmt.errno


在这种情况下,您可能会遇到无法创建其他语句的问题,而前一个语句仍有待处理的结果/结果集。
http://docs.php.net/mysqli-stmt.close :

Closes a prepared statement. mysqli_stmt_close() also deallocates the statement handle. If the current statement has pending or unread results, this function cancels them so that the next query can be executed.

关于php - MySQLi 无法准备语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8729278/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com