- MySQLi 教程
- MySQLi - 主頁
- MySQLi - 簡介
- MySQLi - PHP 語法
- MySQLi - 連線
- MySQLi - 建立資料庫
- MySQLi - 刪除資料庫
- MySQLi - 選擇資料庫
- MySQLi - 建立表
- MySQLi - 刪除表
- MySQLi - 插入查詢
- MySQLi - 選擇查詢
- MySQLi - where 子句
- MySQLi - 更新查詢
- MySQLi - 刪除查詢
- MySQLi - like 子句
- MySQLi - 排序結果
- MySQLi - 使用聯接
- MySQLi - 處理 Null 值
- 獲取和使用 MySQLi 元資料
- MySQL
- MySQL - 安裝
- MySQL - 管理
- MySQL - 資料型別
- MySQL - 正則表示式
- MySQL - 事務
- MySQL - alter 命令
- MySQL - 索引
- MySQL - 臨時表
- MySQL - 克隆表
- MySQL - 使用序列
- MySQL - 處理重複項
- MySQLi 有用資源
- MySQLi - 有用函式
- MySQLi - 快速指南
- MySQLi - 有用資源
- MySQLi - 討論
MySQLi - 多重查詢
語法
bool mysqli_multi_query ( mysqli $link , string $query )
定義和用法
在資料庫上執行查詢。
示例
嘗試以下示例:
<?php
$servername = "localhost:3306";
$username = "root";
$password = "";
$dbname = "TUTORIALS";
$conn = new mysqli($servername, $username, $password, $dbname);
if ($conn->connect_error) {
die('Connect Error (' . mysqli_connect_errno() . ') '. mysqli_connect_error());
exit();
}
if (!mysqli_query($conn, "SET a = 1")) {
printf("Errorcode: %d\n", mysqli_error($conn));
}
echo 'Success... ' . mysqli_get_host_info($conn) . "\n";
$sql = "SELECT * FROM tutorials_auto";
if ($conn->multi_query($sql)) {
do {
/* store first result set */
if ($result = $conn->store_result()) {
while ($row = $result->fetch_row()) {
printf("%s\n", $row[1]);
}
$result->free();
}
if ($conn->more_results()) {
}
} while ($conn->next_result());
}
$conn->close();
?>
以上程式碼的示例輸出應如下:
Errorcode: 0 Success... localhost:3306 via TCP/IP sai ram sai
mysqli_useful_functions.htm
廣告