mysqli_stmt::$affected_rows
mysqli_stmt_affected_rows
直近に実行されたステートメントで変更・削除・追加、あるいは選択された行の総数を返す
説明
オブジェクト指向型
intstring$mysqli_stmt->affected_rows;
手続き型
intstring mysqli_stmt_affected_rows(mysqli_stmt $statement
)
SELECT クエリに対しては、
mysqli_stmt_num_rows 関数と同じように動作します。
パラメータ
-
stmt
-
手続き型のみ:
mysqli_stmt_init が返す mysqli_stmt オブジェクト。
戻り値
ゼロより大きい整数の場合、変更または取得された行の数を示します。ゼロの場合は、
UPDATE
で 1 行も更新されなかった・
WHERE
句にマッチする行がなかった・
あるいはまだクエリが実行されていないのいずれかであることを示します。
-1
は、クエリがエラーを返したか、
SELECT
文については、
mysqli_stmt_store_result をコールする前に
mysqli_stmt_affected_rows がコールされたことを示します。
注意:
変更された行の数が PHP の int 型の最大値をこえる場合は、変更された
行の数は文字列として返されます。
例
例1 mysqli_stmt_affected_rows の例
<?php
mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT);
$mysqli = new mysqli("localhost", "my_user", "my_password", "world");
/* 一時テーブルを作成します */
$mysqli->query("CREATE TEMPORARY TABLE myCountry LIKE Country");
$query = "INSERT INTO myCountry SELECT * FROM Country WHERE Code LIKE ?";
/* 文を準備します */
$stmt = $mysqli->prepare($query);
/* プレースホルダに変数をバインドします */
$code = 'A%';
$stmt->bind_param("s", $code);
/* 文を実行します */
$stmt->execute();
printf("Rows inserted: %d\n", $stmt->affected_rows);
<?php
mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT);
$link = mysqli_connect("localhost", "my_user", "my_password", "world");
/* 一時テーブルを作成します */
mysqli_query($link, "CREATE TEMPORARY TABLE myCountry LIKE Country");
$query = "INSERT INTO myCountry SELECT * FROM Country WHERE Code LIKE ?";
/* 文を準備します */
$stmt = mysqli_prepare($link, $query);
/* プレースホルダに変数をバインドします */
$code = 'A%';
mysqli_stmt_bind_param($stmt, "s", $code);
/* 文を実行します */
mysqli_stmt_execute($stmt);
printf("Rows inserted: %d\n", mysqli_stmt_affected_rows($stmt));
参考
- mysqli_stmt_num_rows
- mysqli_stmt_store_result