Função PHP mysqli_error_list ()
Definição e Uso
o mysqli_error_list() função retorna a lista de erros ocorridos durante a última chamada de função do MySQLi.
Sintaxe
mysqli_error_list($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_error_list () retorna uma lista representando os erros (cada erro como um array) durante a execução da última instrução.
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_error_list () (no estilo procedural) -
<?php
//Creating a connection
$con = mysqli_connect("localhost", "root", "password", "mydb");
mysqli_query($con, "CREATE TABLE Test(Name VARCHAR(10), AGE INT)");
//Executing the query
$query = "INSERT into Test values('Raju', 25),('Rahman', 30),('Sri Rama Chandra Murthi', 25)";
mysqli_query($con, $query);
//Error
$list = mysqli_error_list($con);
print_r($list);
//Closing the connection
mysqli_close($con);
?>
Isso produzirá o seguinte resultado -
Array
(
[0] => Array
(
[errno] => 1406
[sqlstate] => 22001
[error] => Data too long for column 'Name' at row 3
)
)
Exemplo
No estilo orientado a objetos, a sintaxe desta função é $ con -> error_list . 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 rows of employee table
$con -> query("SELECT * FROM wrong_table_name");
//Error
$list = $con->error_list;
print_r($list);
//Closing the connection
$con -> close();
?>
Isso produzirá o seguinte resultado -
Array
(
[0] => Array
(
[errno] => 1146
[sqlstate] => 42S02
[error] => Table 'mydb.wrong_table_name' doesn't exist
)
)
Exemplo
Suponha que temos uma tabela chamada funcionário com o seguinte conteúdo -
mysql> select * from employee;
+------------+--------------+------+------+--------+
| FIRST_NAME | LAST_NAME | AGE | SEX | INCOME |
+------------+--------------+------+------+--------+
| Vinay | Bhattacharya | 20 | M | 16000 |
| Sharukh | Sheik | 25 | M | 13300 |
| Trupthi | Mishra | 24 | F | 31000 |
| Sheldon | Cooper | 25 | M | 2256 |
| Sarmista | Sharma | 28 | F | 15000 |
+------------+--------------+------+------+--------+
5 rows in set (0.06 sec)
A seguir está outro exemplo da função mysqli_error_list () -
<?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");
$list = mysqli_error_list($con);
print_r($list);
//Query to UPDATE the rows of the employee table
mysqli_query($con, "UPDATE employee set INCOME=INCOME+5000 where FIRST_NAME in (*)");
$list = mysqli_error_list($con);
print_r($list);
//Query to INSERT a row into the employee table
mysqli_query($con, "INSERT INTO employee VALUES (Archana, 'Mohonthy', 30, 'M', 13000, 106)");
$list = mysqli_error_list($con);
print_r($list);
//Closing the connection
mysqli_close($con);
?>
Isso produzirá o seguinte resultado -
Array
(
)
Array
(
[0] => Array
(
[errno] => 1064
[sqlstate] => 42000
[error] => 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
)
)
Array
(
[0] => Array
(
[errno] => 1136
[sqlstate] => 21S01
[error] => Column count doesn't match value count at row 1
)
)