Função PHP mysqli_stmt_affected_rows ()
Definição e Uso
o mysqli_stmt_affected_rows() função retorna o número de linhas afetadas (alteradas, excluídas, inseridas) pela instrução executada recentemente.
Esta função funciona bem apenas se invocada após as instruções INSERT, UPDATE ou DELETE. Se você precisa saber o número de linhas afetadas pela consulta SELECT, você precisa usar a função mysqli_stmt_num_rows () .
Sintaxe
mysqli_stmt_affected_rows($stmt)
Parâmetros
Sr. Não | Parâmetro e Descrição |
---|---|
1 |
stmt(Mandatory) Este é um objeto que representa uma instrução que executa uma consulta SQL. |
Valores Retornados
A função PHP mysqli_stmt_affected_rows () retorna um valor inteiro indicando o número de linhas afetadas pela operação anterior (INSERT, UPDATE, REPLACE ou DELETE).
Se a instrução tiver um erro, esta função retorna -1. Se não houver linhas afetadas, esta função retorna0.
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
Suponha que criamos uma tabela chamada employee no banco de dados MySQL com o seguinte conteúdo $ minus;
mysql> select * from employee;
+------------+--------------+------+------+--------+
| FIRST_NAME | LAST_NAME | AGE | SEX | INCOME |
+------------+--------------+------+------+--------+
| Vinay | Bhattacharya | 20 | M | 21000 |
| Sharukh | Sheik | 25 | M | 23300 |
| Trupthi | Mishra | 24 | F | 51000 |
| Sheldon | Cooper | 25 | M | 2256 |
| Sarmista | Sharma | 28 | F | 15000 |
+------------+--------------+------+------+--------+
5 rows in set (0.00 sec)
O exemplo a seguir demonstra o uso da função mysqli_stmt_affected_rows () (no estilo procedural) -
<?php
$con = mysqli_connect("localhost", "root", "password", "mydb");
$stmt = mysqli_prepare($con, "UPDATE employee set INCOME=INCOME-? where INCOME>=?");
mysqli_stmt_bind_param($stmt, "si", $reduct, $limit);
$limit = 20000;
$reduct = 5000;
//Executing the statement
mysqli_stmt_execute($stmt);
print("Records Updated......\n");
//Affected rows
$count = mysqli_stmt_affected_rows($stmt);
//Closing the statement
mysqli_stmt_close($stmt);
//Closing the connection
mysqli_close($con);
print("Rows affected ".$count);
?>
Isso produzirá o seguinte resultado -
Records Updated......
Rows affected 3
Exemplo
No estilo orientado a objetos, a sintaxe desta função é $ con> associated_rows; A seguir está o exemplo desta função no estilo orientado a objetos $ minus;
<?php
//Creating a connection
$con = new mysqli("localhost", "root", "password", "mydb");
$con -> query("CREATE TABLE Test(Name VARCHAR(255), AGE INT)");
print("Table Created.....\n");
$con -> query("insert into Test values('Raju', 25),('Rahman', 30),('Sarmista', 27)");
print("Records Inserted.....\n");
$stmt = $con -> prepare( "DELETE FROM Test WHERE Name in(?, ?)");
$stmt -> bind_param("ss", $name1, $name2);
$name1 = 'Raju';
$name2 = 'Rahman';
print("Records Deleted.....\n");
//Executing the statement
$stmt->execute();
//Affected rows
$count = $stmt ->affected_rows;
print("Rows affected ".$count);
//Closing the statement
$stmt->close();
//Closing the connection
$con->close();
?>
Isso produzirá o seguinte resultado -
Table Created.....
Records Inserted.....
Records Deleted.....
Rows affected 2
Exemplo
Vamos verificar os valores de retorno disso se a consulta não afetar nenhuma linha -
<?php
$con = @mysqli_connect("localhost", "root", "password", "mydb");
mysqli_query($con, "CREATE TABLE Test(Name VARCHAR(255), AGE INT)");
print("Table Created.....\n");
mysqli_query($con, "insert into Test values('Raju', 25),('Rahman', 30),('Sarmista', 27)");
print("Records Inserted.....\n");
$stmt = mysqli_prepare($con, "DELETE FROM test where Age<?");
mysqli_stmt_bind_param($stmt, "i", $num);
$num = 8;
//Executing the statement
mysqli_stmt_execute($stmt);
//Affected rows
$count = mysqli_stmt_affected_rows($stmt);
print("Rows affected (when query does nothing): ".$count);
//Closing the statement
mysqli_stmt_close($stmt);
//Closing the connection
mysqli_close($con);
?>
Isso produzirá o seguinte resultado -
Table Created.....
Records Inserted.....
Rows affected (when query does nothing): 0