(PHP 5)
mysqli->errno -- mysqli_errno — 直近の関数コールによるエラーコードを返す
オブジェクト指向型
手続き型
直近の MySQLi 関数のコールが成功あるいは失敗した際のエラーコードを返します。
クライアントのエラーメッセージ番号は MySQL の errmsg.h ヘッダファイルで、そしてサーバのエラーメッセージ番号は mysqld_error.h で定義されています。MySQL のソース配布の中には、エラーメッセージの 完全なリストが Docs/mysqld_error.txt に含まれています。
直近のコールが失敗した場合、エラーコードを返します。 ゼロは、何もエラーが発生しなかったことを示します。
例1 mysqli->errno の例
オブジェクト指向型
<?php
$mysqli = new mysqli("localhost", "my_user", "my_password", "world");
/* 接続状況をチェックします */
if (mysqli_connect_errno()) {
printf("Connect failed: %s\n", mysqli_connect_error());
exit();
}
if (!$mysqli->query("SET a=1")) {
printf("Errorcode: %d\n", $mysqli->errno);
}
/* 接続を閉じます */
$mysqli->close();
?>
手続き型
<?php
$link = mysqli_connect("localhost", "my_user", "my_password", "world");
/* 接続状況をチェックします */
if (mysqli_connect_errno()) {
printf("Connect failed: %s\n", mysqli_connect_error());
exit();
}
if (!mysqli_query($link, "SET a=1")) {
printf("Errorcode: %d\n", mysqli_errno($link));
}
/* 接続を閉じます */
mysqli_close($link);
?>
上の例の出力は以下となります。
Errorcode: 1193