Funzione mysqli_error () di PHP
Definizione e utilizzo
Il mysqli_error() restituisce la descrizione dell'errore che si è verificato durante l'ultima chiamata alla funzione MySQLi.
Sintassi
mysqli_error($con)
Parametri
Suor n | Parametro e descrizione |
---|---|
1 |
con(Mandatory) Questo è un oggetto che rappresenta una connessione a MySQL Server. |
Valori restituiti
La funzione mysqli_error () di PHP restituisce un valore stringa che rappresenta la descrizione dell'errore dall'ultima chiamata alla funzione MySQLi. Se non ci sono errori questa funzione restituisce una stringa vuota.
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_error () (in stile procedurale) -
<?php
//Creating a connection
$con = mysqli_connect("localhost", "root", "password", "mydb");
//Query to retrieve all the rows of employee table
mysqli_query($con, "SELECT * FORM employee");
//Error
$error = mysqli_error($con);
print("Error Occurred: ".$error);
//Closing the connection
mysqli_close($con);
?>
Questo produrrà il seguente risultato:
Error Occurred: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'FORM employee' at line 1
Esempio
Nello stile orientato agli oggetti la sintassi di questa funzione è $ con -> errore . Di seguito è riportato l'esempio di questa funzione in stile orientato agli oggetti:
<?php
//Creating a connection
$con = new mysqli("localhost", "root", "password", "mydb");
//Query to retrieve all the rows of employee table
$con -> query("SELECT * FROM wrong_table_name");
//Error
$error = $con ->error;
print("Error Occurred: ".$error);
//Closing the connection
$con -> close();
?>
Questo produrrà il seguente risultato:
Error Occurred: Table 'mydb.wrong_table_name' doesn't exist
Esempio
Di seguito è riportato un altro esempio della funzione mysqli_error () -
<?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("Errors in the SELECT query: ".mysqli_error($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("Errors in the UPDATE query: ".mysqli_error($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("Errors in the INSERT query: ".mysqli_error($con)."\n");
//Closing the connection
mysqli_close($con);
?>
Questo produrrà il seguente risultato:
Errors in the SELECT query:
Errors in the UPDATE query: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '*)' at line 1
Errors in the INSERT query: Unknown column 'Archana' in 'field list'
Esempio
<?php
$connection_mysql = mysqli_connect("localhost","root","password","mydb");
if (mysqli_connect_errno($connection_mysql)){
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
if (!mysqli_query($connection_mysql,"INSERT INTO employee (FirstName) VALUES ('Jack')")){
echo("Error description: " . mysqli_error($connection_mysql));
}
mysqli_close($connection_mysql);
?>
Questo produrrà il seguente risultato:
Error description: Unknown column 'FirstName' in 'field list'