mysqli_multi_query

(PHP 5)

mysqli_multi_query

(no version information, might be only in CVS)

mysqli->multi_query -- データベース上でクエリを実行する

説明

手続き型:

bool mysqli_multi_query ( mysqli link, string query )

オブジェクト指向型(メソッド):

class mysqli {

bool multi_query ( string query )

}

mysqli_multi_query() は、セミコロンで連結された ひとつまたは複数のクエリを実行します。

最初のクエリの結果セットを取得するには、 mysqli_use_result() あるいは mysqli_store_result() を使用します。その他のクエリの結果は、 mysqli_more_results() および mysqli_next_result() を使用して取得します。

返り値

最初のステートメントが失敗した場合にのみ、 mysqli_multi_query()FALSE を返します。 その他のステートメントのエラーを取得するには、まず mysqli_next_result() をコールする必要があります。

参考

mysqli_use_result()mysqli_store_result()mysqli_next_result() そして mysqli_more_results()

例 1. オブジェクト指向型

<?php
$mysqli
= new mysqli("localhost", "my_user", "my_password", "world");

/* 接続状況をチェックします */
if (mysqli_connect_errno()) {
    
printf("Connect failed: %s\n", mysqli_connect_error());
    exit();
}

$query  = "SELECT CURRENT_USER();";
$query .= "SELECT Name FROM City ORDER BY ID LIMIT 20, 5";

/* execute multi query */
if ($mysqli->multi_query($query)) {
    do {
        
/* 最初の結果セットを格納します */
        
if ($result = $mysqli->store_result()) {
            while (
$row = $result->fetch_row()) {
                
printf("%s\n", $row[0]);
            }
            
$result->close();
        }
        
/* 区切り線を表示します */
        
if ($mysqli->more_results()) {
            
printf("-----------------\n");
        }
    } while (
$mysqli->next_result());
}

/* 接続を閉じます */
$mysqli->close();
?>

例 2. 手続き型

<?php
$link
= mysqli_connect("localhost", "my_user", "my_password", "world");

/* 接続状況をチェックします */
if (mysqli_connect_errno()) {
    
printf("Connect failed: %s\n", mysqli_connect_error());
    exit();
}

$query  = "SELECT CURRENT_USER();";
$query .= "SELECT Name FROM City ORDER BY ID LIMIT 20, 5";

/* execute multi query */
if (mysqli_multi_query($link, $query)) {
    do {
        
/* 最初の結果セットを格納します */
        
if ($result = mysqli_store_result($link)) {
            while (
$row = mysqli_fetch_row($result)) {
                
printf("%s\n", $row[0]);
            }
            
mysqli_free_result($result);
        }
        
/* 区切り線を表示します */
        
if (mysqli_more_results($link)) {
            
printf("-----------------\n");
        }
    } while (
mysqli_next_result($link));
}

/* 接続を閉じます */
mysqli_close($link);
?>

上の例の出力は以下となります。

my_user@localhost
-----------------
Amersfoort
Maastricht
Dordrecht
Leiden
Haarlemmermeer