PHP mysqli_sqlstate() 函數(shù)
PHP mysqli_sqlstate() 函數(shù)
返回最后一個 MySQL 操作的 SQLSTATE 錯誤代碼:
<?php // 假定數(shù)據(jù)庫用戶名:root,密碼:123456,數(shù)據(jù)庫:RUNOOB $con=mysqli_connect("localhost","root","123456","RUNOOB"); if (mysqli_connect_errno($con)) { echo "連接 MySQL 失敗: " . mysqli_connect_error(); } // 數(shù)據(jù)表 websites 已存在,所以返回錯誤 $sql="CREATE TABLE websites (name VARCHAR(30),url VARCHAR(30),alexa INT)"; if (!mysqli_query($con,$sql)) { echo "SQLSTATE error: ". mysqli_sqlstate($con); } // 關閉連接 mysqli_close($con); ?>
定義和用法
mysqli_sqlstate() 函數(shù)返回最后一個錯誤的 SQLSTATE 錯誤代碼。
錯誤代碼包含五個字符。"00000" 表明沒有錯誤。值由 ANSI SQL 和 ODBC 指定。
語法
mysqli_sqlstate(connection);
參數(shù) | 描述 |
---|---|
connection | 必需。規(guī)定要使用的 MySQL 連接。 |
技術細節(jié)
返回值: | 返回一個包含最后一個錯誤的 SQLSTATE 錯誤代碼的字符串。 |
---|---|
PHP 版本: | 5+ |

相關文章
- PHP 教程
- PHP 變量
- PHP 數(shù)據(jù)類型
- PHP 數(shù)組
- PHP 魔術常量
- PHP 面向對象
- PHP Cookie
- PHP array_count_values() 函數(shù)
- PHP array_intersect_ukey() 函數(shù)
- PHP array_push() 函數(shù)
- PHP array_splice() 函數(shù)
- PHP array_uintersect() 函數(shù)
- PHP count() 函數(shù)
- PHP krsort() 函數(shù)
- PHP next() 函數(shù)
- PHP rsort() 函數(shù)
- PHP 5 Calendar 函數(shù)
- PHP 5 Date/Time 函數(shù)
- PHP Error 和 Logging 函數(shù)
- PHP Filter 函數(shù)