Função PHP mysqli_sqlstate ()
Definição e Uso
o mysqli_sqlstate() função retorna o erro SQLSTATE ocorrido durante a última chamada de função MySQLi (Operação MySQL).
Sintaxe
mysqli_sqlstate($con)
Parâmetros
Sr. Não | Parâmetro e Descrição |
---|---|
1 | con(Mandatory) Este é um objeto que representa uma conexão com o servidor MySQL. |
Valores Retornados
A função PHP mysqli_sqlstate () retorna um valor de string representando o erro SQLSTATE ocorrido durante a última operação MySQL. Se não houver erros, esta função retorna 00000 .
Versão PHP
Esta função foi introduzida pela primeira vez no PHP Versão 5 e funciona em todas as versões posteriores.
Exemplo
O exemplo a seguir demonstra o uso da função mysqli_sqlstate () (no estilo procedural) -
<?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);
?>
Isso produzirá o seguinte resultado -
SQL State Error: 42S02
Exemplo
No estilo orientado a objetos, a sintaxe desta função é $ con -> sqlstate . A seguir está o exemplo desta função no estilo orientado a objetos -
<?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();
?>
Isso produzirá o seguinte resultado -
SQL State Error: 42000
Exemplo
A seguir está outro exemplo da função 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);
?>
Isso produzirá o seguinte resultado -
SQL State Error: 00000
SQL State Error: 42000
SQL State Error: 42S22
Exemplo
<?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);
?>
Isso produzirá o seguinte resultado -
SQLSTATE error: 42S01