mysqli_store_result
时间: 2023-06-14 08:06:41 浏览: 76
mysqli_store_result() 是一个 MySQLi 函数,用于将前一次查询的结果集存储在客户端的内存中,以便后续在 PHP 中使用。该函数适用于 SELECT 查询语句,其返回值为 mysqli_result 类型的对象。
使用 mysqli_store_result() 函数时,需要先执行 mysqli_query() 函数执行查询操作。然后,再使用 mysqli_store_result() 函数将查询结果集存储在内存中。最后,可以使用 mysqli_fetch_assoc()、mysqli_fetch_array() 或其他相应的函数从结果集中获取数据。使用 mysqli_store_result() 函数可以有效地减少客户端和服务器之间的交互次数,从而提高查询效率。
相关问题
mysqli_store_result() 怎么用
mysqli_store_result() 是MySQLi库中的一个函数,用于将最后一次查询返回的结果集存储在内存中。
使用mysqli_store_result()函数的步骤如下:
1. 创建一个mysqli对象,并连接到MySQL服务器。
2. 执行SQL查询,使用mysqli_query()函数。
3. 对查询结果集进行处理,使用mysqli_fetch_*()系列函数获取数据行。
4. 使用mysqli_store_result()函数将结果集存储在内存中。
示例代码:
```
<?php
// 创建mysqli对象
$mysqli = new mysqli("localhost", "username", "password", "dbname");
// 如果连接出错,输出错误信息并结束脚本
if ($mysqli->connect_error) {
die("连接失败:" . $mysqli->connect_error);
}
// 执行查询
$sql = "SELECT * FROM `mytable`";
$result = $mysqli->query($sql);
// 获取数据行
while ($row = $result->fetch_assoc()) {
// 处理数据行
}
// 存储结果集
$mysqli->store_result();
// 关闭连接
$mysqli->close();
?>
```
注意:mysqli_store_result()函数适用于返回大量数据行的查询结果,如果查询结果集比较小,可以直接使用mysqli_fetch_*()系列函数获取数据行,不需要使用mysqli_store_result()函数。
为什么每刷新一次,数据库都会自动添加一条代码<!-- <?php include_once("functions/database.php"); // 上传数据 $category = $_POST["category"]; $category_name = htmlspecialchars(addslashes($_POST["category_name"])); $category_description = htmlspecialchars(addslashes($_POST["category_description"])); // 创建MySQLi连接 $conn = mysqli_connect("localhost", "root", "root", "news"); if (!$conn) { die("连接失败:" . mysqli_connect_error()); } $stmt = mysqli_prepare($conn, "INSERT INTO category (category_id, category_name, category_description) VALUES (?, ?, ?)"); mysqli_stmt_bind_param($stmt, 'iss', $category_id, $category_name, $category_description); $category_id = null; mysqli_stmt_execute($stmt); if (mysqli_stmt_affected_rows($stmt) > 0) { echo "该类别成功添加到数据库表中!"; } else { echo "添加类别失败,请检查输入的数据并重试。"; } mysqli_stmt_close($stmt); mysqli_close($conn); ?> --> <?php // 包括数据库连接代码 include_once("functions/database.php"); // 创建MySQLi连接 $conn = mysqli_connect("localhost", "root", "root", "news"); if (!$conn) { die("连接失败:" . mysqli_connect_error()); } // 查询 category 表中的所有数据 $query = "SELECT * FROM category"; $result = mysqli_query($conn, $query); if (!$result) { die("查询失败:" . mysqli_error($conn)); } // 显示查询结果 echo "<table>"; echo "<tr><th>category_id</th><th>category_name</th><th>category_description</th></tr>"; while ($row = mysqli_fetch_assoc($result)) { echo "<tr><td>" . $row["category_id"] . "</td><td>" . $row["category_name"] . "</td><td>" . $row["category_description"] . "</td></tr>"; } echo "</table>"; mysqli_free_result($result); mysqli_close($conn); ?>
根据你提供的代码,我猜测你可能是将整个 PHP 代码块作为注释添加到 HTML 中,而不是将其作为服务器端代码来处理。因此,每次刷新页面时,浏览器会将代码块当做注释进行忽略,而服务器则会将其解析为有效的 PHP 代码并执行,从而导致数据库中每刷新一次页面就会添加一条数据。
要解决这个问题,你需要将 PHP 代码块放到服务器端脚本文件中,而不是将其作为注释添加到 HTML 中。在服务器端,只有在调用脚本时才会执行其中的代码,而不是在每次刷新页面时都执行。
另外,为了避免数据库中添加重复的数据,你可以在添加数据前先查询数据库,确保该数据不存在。如果已经存在,则不进行添加操作。代码示例:
```php
// 包括数据库连接代码
include_once("functions/database.php");
// 检查表单是否提交
if ($_SERVER["REQUEST_METHOD"] == "POST") {
// 上传数据
$category = $_POST["category"];
$category_name = htmlspecialchars(addslashes($_POST["category_name"]));
$category_description = htmlspecialchars(addslashes($_POST["category_description"]));
// 创建MySQLi连接
$conn = mysqli_connect("localhost", "root", "root", "news");
if (!$conn) {
die("连接失败:" . mysqli_connect_error());
}
// 检查数据是否已存在
$stmt = mysqli_prepare($conn, "SELECT * FROM category WHERE category_name = ?");
mysqli_stmt_bind_param($stmt, 's', $category_name);
mysqli_stmt_execute($stmt);
mysqli_stmt_store_result($stmt);
if (mysqli_stmt_num_rows($stmt) > 0) {
// 数据已存在,不进行添加操作
echo "该类别已存在!";
} else {
// 数据不存在,进行添加操作
$stmt = mysqli_prepare($conn, "INSERT INTO category (category_id, category_name, category_description) VALUES (?, ?, ?)");
mysqli_stmt_bind_param($stmt, 'iss', $category_id, $category_name, $category_description);
$category_id = null;
mysqli_stmt_execute($stmt);
if (mysqli_stmt_affected_rows($stmt) > 0) {
echo "该类别成功添加到数据库表中!";
} else {
echo "添加类别失败,请检查输入的数据并重试。";
}
}
mysqli_stmt_close($stmt);
mysqli_close($conn);
}
// 创建MySQLi连接
$conn = mysqli_connect("localhost", "root", "root", "news");
if (!$conn) {
die("连接失败:" . mysqli_connect_error());
}
// 查询 category 表中的所有数据
$query = "SELECT * FROM category";
$result = mysqli_query($conn, $query);
if (!$result) {
die("查询失败:" . mysqli_error($conn));
}
// 显示查询结果
echo "<table>";
echo "<tr><th>category_id</th><th>category_name</th><th>category_description</th></tr>";
while ($row = mysqli_fetch_assoc($result)) {
echo "<tr><td>" . $row["category_id"] . "</td><td>" . $row["category_name"] . "</td><td>" . $row["category_description"] . "</td></tr>";
}
echo "</table>";
mysqli_free_result($result);
mysqli_close($conn);
```
注意,这里只是一个示例代码,具体的实现方式可能会因实际场景而有所不同,需要根据具体情况进行修改和优化。
阅读全文