Función PHP mysqli_sqlstate ()
Definición y uso
los mysqli_sqlstate() La función devuelve el error SQLSTATE ocurrido durante la última llamada a la función MySQLi (Operación MySQL).
Sintaxis
mysqli_sqlstate($con)
Parámetros
No Señor | Descripción de parámetros |
---|---|
1 | con(Mandatory) Este es un objeto que representa una conexión a MySQL Server. |
Valores devueltos
La función PHP mysqli_sqlstate () devuelve un valor de cadena que representa el error SQLSTATE ocurrido durante la última operación de MySQL. Si no hay errores, esta función devuelve 00000 .
Versión PHP
Esta función se introdujo por primera vez en PHP Versión 5 y funciona en todas las versiones posteriores.
Ejemplo
El siguiente ejemplo demuestra el uso de la función mysqli_sqlstate () (en estilo procedimental):
<?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);
?>
Esto producirá el siguiente resultado:
SQL State Error: 42S02
Ejemplo
En el estilo orientado a objetos, la sintaxis de esta función es $ con -> sqlstate . A continuación se muestra el ejemplo de esta función en 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();
?>
Esto producirá el siguiente resultado:
SQL State Error: 42000
Ejemplo
A continuación se muestra otro ejemplo de la función 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);
?>
Esto producirá el siguiente resultado:
SQL State Error: 00000
SQL State Error: 42000
SQL State Error: 42S22
Ejemplo
<?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);
?>
Esto producirá el siguiente resultado:
SQLSTATE error: 42S01