Função PHP mysqli_stmt_error ()
Definição e Uso
o mysqli_stmt_error() A função retorna a descrição do erro ocorrido durante a execução da última instrução.
Sintaxe
mysqli_stmt_error($stmt)
Parâmetros
Sr. Não | Parâmetro e Descrição |
---|---|
1 | stmt(Mandatory) Este é um objeto que representa uma declaração. |
Valores Retornados
A função PHP mysqli_stmt_error () retorna um valor de string representando a descrição do erro ocorrido durante a execução da última instrução. Se não houver erros, esta função retorna uma string vazia.
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_stmt_error () (no estilo procedural) -
<?php
$con = mysqli_connect("localhost", "root", "password", "mydb");
mysqli_query($con, "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");
mysqli_query($con, "INSERT INTO myplayers values(1, 'Sikhar', 'Dhawan', 'Delhi', 'India')");
print("Record Inserted.....\n");
$stmt = mysqli_prepare($con, "SELECT * FROM myplayers");
mysqli_query($con, "DROP TABLE myplayers");
//Executing the statement
mysqli_stmt_execute($stmt);
//Error
$error = mysqli_stmt_error($stmt);
print("Error : ".$error);
//Closing the statement
mysqli_stmt_close($stmt);
//Closing the connection
mysqli_close($con);
?>
Isso produzirá o seguinte resultado -
Table Created.....
Record Inserted.....
Error : Table 'mydb.myplayers' doesn't exist
Exemplo
No estilo orientado a objetos, a sintaxe desta função é $ con -> error . A seguir está o exemplo desta função no estilo orientado a objetos -
<?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();
//Error
$error = $stmt ->error;
print("Error: ".$error);
//Closing the statement
$stmt->close();
//Closing the connection
$con->close();
?>
Isso produzirá o seguinte resultado -
Table Created.....
Record Inserted.....
Error : Table 'mydb.myplayers' doesn't exist
Exemplo
Se não houver erros no último objeto de instrução executado, esta função retorna uma string vazia -
<?php
$con = mysqli_connect("localhost", "root", "password", "mydb");
mysqli_query($con, "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");
$query = "INSERT INTO myplayers values(1, 'Sikhar', 'Dhawan', 'Delhi', 'India'),(2, 'Jonathan', 'Trott', 'CapeTown', 'SouthAfrica'),(3, 'Kumara', 'Sangakkara', 'Matale', 'Srilanka')";
//Preparing a statement
$stmt = mysqli_prepare($con, $query);
//Executing the statement
mysqli_stmt_execute($stmt);
print("Record Inserted.....\n");
//Error
$error = mysqli_stmt_error($stmt);
print("Error : ".$error);
//Closing the statement
mysqli_stmt_close($stmt);
//Closing the connection
mysqli_close($con);
?>
Isso produzirá o seguinte resultado -
Table Created.....
Record Inserted.....
Error :