1

我想对多个查询使用单个数据库连接,但使用 prepare 和 bind_param。我怎样才能做到这一点?我在文档中找不到它。

编辑:我想要两个完全不同的查询。

$db = getConnection();
$query = "INSERT INTO talks(title, body, topic) VALUES(?, ?, ?)";
$stmt = $db->prepare($query);
$stmt->bind_param('sss', $title , $body, $topic);
$stmt->execute();
$stmt->close();

$query = "SELECT * WHERE title=?";
$stmt = $db->prepare($query);
$stmt->bind_param("s", $title);
$stmt->execute();
$stmt->bind_result($i, $t, $b, $to);
$stmt->fetch();
$id = $i;
$stmt->close();

它告诉我 $stmt 不是第二个对象

4

1 回答 1

2

只需准备第二个查询,就像您对第一个查询所做的那样。

$conn = new mysqli(....);
$stmt = $conn->prepare(....);
//Do stuff with $stmt

$stmt = $conn->prepare(...different...); //$stmt is overridden with the new query.
//Do stuff with the new $stmt.
于 2012-11-26T21:46:50.397 回答