當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


PHP mysqli_sqlstate()用法及代碼示例


定義和用法

這個mysqli_sqlstate()函數返回上次 MySQLi 函數調用(MySQL 操作)期間發生的 SQLSTATE 錯誤。

用法

mysqli_sqlstate($con)

參數

Sr.No 參數及說明
1

con(Mandatory)

這是一個表示與 MySQL 服務器的連接的對象。

返回值

PHP mysqli_sqlstate() 函數返回一個字符串值,表示上次 MySQL 操作期間發生的 SQLSTATE 錯誤。如果沒有錯誤,此函數返回 00000。

PHP版本

這個函數最初是在 PHP 版本 5 中引入的,適用於所有後續版本。

示例

以下示例演示了 mysqli_sqlstate() 函數的用法(程序風格) -

<?php
   //Creating a connection
   $con = mysqli_connect("localhost", "root", "password", "mydb");

   //Query to retrieve all the records of a table
   mysqli_query($con, "Select * from WrongTable");

   //SQL State
   $state = mysqli_sqlstate($con);
   print("SQL State Error:".$state);

   //Closing the connection
   mysqli_close($con);
?>

這將產生以下結果 -

SQL State Error:42S02

示例

在麵向對象的風格中,這個函數的語法是 $con ->sqlstate。以下是麵向對象風格的此函數的示例 -

<?php
   //Creating a connection
   $con = new mysqli("localhost", "root", "password", "mydb");

   //Query to retrieve all the records of the employee table
   $con -> query("Select FIRST_NAME, LAST_NAME, AGE form employee");

   //SQL State
   $state = $con->sqlstate;
   print("SQL State Error:".$state);

   //Closing the connection
   $con -> close();
?>

這將產生以下結果 -

SQL State Error:42000

示例

以下是 mysqli_sqlstate() 函數的另一個示例 -

<?php
   //Creating a connection
   $con = mysqli_connect("localhost", "root", "password", "mydb");

   //Query to SELECT all the rows of the employee table
   mysqli_query($con, "SELECT * FROM employee");
   print("SQL State Error:".mysqli_sqlstate($con)."\n");

   //Query to UPDATE the rows of the employee table
   mysqli_query($con, "UPDATE employee set INCOME=INCOME+5000 where FIRST_NAME in (*)");
   print("SQL State Error:".mysqli_sqlstate($con)."\n");

   //Query to INSERT a row into the employee table
   mysqli_query($con, "INSERT INTO employee VALUES (Archana, 'Mohonthy', 30, 'M', 13000, 106)");
   print("SQL State Error:".mysqli_sqlstate($con)."\n");

   //Closing the connection
   mysqli_close($con);
?>

這將產生以下結果 -

SQL State Error:00000
SQL State Error:42000
SQL State Error:42S22

示例

<?php
   $connection_mysql = mysqli_connect("localhost", "root", "password", "mydb");
   
   if (mysqli_connect_errno($connection_mysql)){
      echo "Failed to connect to MySQL:" . mysqli_connect_error();
   }
   
   //Assume we already have a table named Persons in the database mydb
   $sql = "CREATE TABLE Persons (Firstname VARCHAR(30),Lastname VARCHAR(30),Age INT)";
   
   if (!mysqli_query($connection_mysql,$sql)){
      echo "SQLSTATE error:". mysqli_sqlstate($connection_mysql);
   }
   
   mysqli_close($connection_mysql);
?>

這將產生以下結果 -

SQLSTATE error:42S01

相關用法


注:本文由純淨天空篩選整理自 PHP mysqli_sqlstate() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。