Funzione PHP mysqli_stmt_sqlstate ()
Definizione e utilizzo
Il mysqli_stmt_sqlstate() la funzione restituisce l'errore SQLSTATE che si è verificato durante l'esecuzione dell'ultima istruzione.
Sintassi
mysqli_stmt_sqlstate($stmt);
Parametri
Suor n | Parametro e descrizione |
---|---|
1 |
stmt(Mandatory) Questo è un oggetto che rappresenta un'istruzione (preparato). |
Valori restituiti
La funzione PHP mysqli_stmt_sqlstate () restituisce un valore stringa che rappresenta l'errore SQLSTATE che si è verificato durante l'esecuzione dell'ultima istruzione. Se non ci sono errori questa funzione restituisce 00000 .
Versione PHP
Questa funzione è stata introdotta per la prima volta nella versione 5 di PHP e funziona in tutte le versioni successive.
Esempio
L'esempio seguente mostra l'utilizzo della funzione mysqli_stmt_sqlstate () (in stile procedurale) -
<?php
$con = mysqli_connect("localhost", "root", "password", "mydb");
mysqli_query($con, "CREATE TABLE emp(ID INT, FirstName VARCHAR(20))");
print("Table Created.....\n");
$stmt = mysqli_prepare($con, "INSERT INTO emp (ID) VALUES (?)");
mysqli_stmt_bind_param($stmt, "s", $id);
$id = 'test';
//Executing the statement
mysqli_stmt_execute($stmt);
//State
$state = mysqli_stmt_sqlstate($stmt);
print("state: ".$state);
//Closing the statement
mysqli_stmt_close($stmt);
//Closing the connection
mysqli_close($con);
?>
Questo produrrà il seguente risultato:
Table Created.....
state: HY000
Esempio
Nello stile orientato agli oggetti la sintassi di questa funzione è $ con -> sqlstate . Di seguito è riportato l'esempio di questa funzione in stile orientato agli oggetti:
<?php
//Creating a connection
$con = new mysqli("localhost", "root", "password", "mydb");
$con -> query("CREATE TABLE myplayers(ID INT, First_Name VARCHAR(255), Last_Name VARCHAR(255), Place_Of_Birth VARCHAR(255), Country VARCHAR(255))");
print("Table Created.....\n");
$con -> query("INSERT INTO myplayers values(1, 'Sikhar', 'Dhawan', 'Delhi', 'India')");
print("Record Inserted.....\n");
$stmt = $con ->prepare("SELECT * FROM myplayers");
$con ->query("DROP TABLE myplayers");
//Executing the statement
$stmt->execute();
//SQl State
$state = $stmt ->sqlstate;
print("SQL State: ".$state);
//Closing the statement
$stmt->close();
//Closing the connection
$con->close();
?>
Questo produrrà il seguente risultato:
Table Created.....
Record Inserted.....
SQL State: 42S02
Esempio
Di seguito è riportato un altro esempio della funzione mysqli_stmt_sqlstate () -
<?php
$con = mysqli_connect("localhost", "root", "password", "mydb");
mysqli_query($con, "CREATE TABLE emp(ID INT, FirstName VARCHAR(20), LastName VARCHAR(5), DateOfBirth VARCHAR(255), Salary INT)");
print("Table Created.....\n");
$stmt = mysqli_prepare($con, "INSERT INTO emp values(?, ?, ?, ?, ?)");
mysqli_stmt_bind_param($stmt, "isssi", $id, $fname, $lname, $pob, $country);
$id = 1;
$fname = 'Swetha';
$lname = 'Yellapragada';
$dob = DATE('1981-12-05');
$country = 2366;
//Executing the statement
mysqli_stmt_execute($stmt);
//Warnings
$state = mysqli_stmt_sqlstate($stmt);
print("state: ".$state);
//Closing the statement
mysqli_stmt_close($stmt);
//Closing the connection
mysqli_close($con);
?>
Questo produrrà il seguente risultato:
Table Created.....
state: 22001