Función PHP mysqli_stmt_execute ()
Definición y uso
los mysqli_stmt_execute() La función acepta un objeto de declaración preparado (creado con la función prepare ()) como parámetro y lo ejecuta.
Cuando se invoca, todos los marcadores de parámetros se reemplazarán con los datos delimitados. Después de esta función, si invoca la función mysqli_stmt_affected_rows () (en el caso de las consultas UPDATE, DELETE, INSERT) obtendrá el número de filas afectadas. De la misma manera, si invoca la función mysqli_stmt_fetch () (en el caso de SELECT), se devuelve un conjunto de resultados.
Sintaxis
mysqli_stmt_execute($stmt);
Parámetros
No Señor | Descripción de parámetros |
---|---|
1 | con(Mandatory) Este es un objeto que representa una declaración preparada. |
Valores devueltos
La función PHP mysqli_stmt_execute () devuelve un valor booleano que es verdadero en caso de éxito y falso en caso de error.
Versión PHP
Esta función se introdujo por primera vez en PHP Versión 5 y funciona en todas las versiones posteriores.
Ejemplo
Suponga que hemos creado una tabla llamada empleado en la base de datos MySQL con el siguiente contenido $ menos;
mysql> select * from employee;
+------------+--------------+------+------+--------+
| FIRST_NAME | LAST_NAME | AGE | SEX | INCOME |
+------------+--------------+------+------+--------+
| Vinay | Bhattacharya | 20 | M | 16000 |
| Sharukh | Sheik | 25 | M | 18300 |
| Trupthi | Mishra | 24 | F | 36000 |
| Sheldon | Cooper | 25 | M | 12256 |
| Sarmista | Sharma | 28 | F | 15000 |
+------------+--------------+------+------+--------+
5 rows in set (0.00 sec)
El siguiente ejemplo demuestra el uso de la función mysqli_stmt_execute () (en estilo procedimental):
<?php
$con = mysqli_connect("localhost", "root", "password", "mydb");
$stmt = mysqli_prepare($con, "UPDATE employee set INCOME=INCOME-? where INCOME >?");
mysqli_stmt_execute($stmt, "si", $reduct, $limit);
$limit = 16000;
$reduct = 5000;
//Executing the statement
mysqli_stmt_execute($stmt);
print("Records Updated......\n");
//Closing the statement
mysqli_stmt_execute($stmt);
//Closing the connection
mysqli_close($con);
?>
Esto producirá el siguiente resultado:
Records Updated......
Después de la ejecución del programa anterior, el contenido de la tabla de empleados será el siguiente:
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 | 12256 |
| Sarmista | Sharma | 28 | F | 15000 |
+------------+--------------+------+------+--------+
5 rows in set (0.00 sec)
Ejemplo
En el estilo orientado a objetos, la sintaxis de esta función es $ stmt-> execute (); A continuación se muestra el ejemplo de esta función en el estilo orientado a objetos $ minus;
<?php
//Creating a connection
$con = new mysqli("localhost", "root", "password", "mydb");
//Creating a table
$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");
//Inserting values into the table using prepared statement
$stmt = $con -> prepare( "INSERT INTO myplayers values(?, ?, ?, ?, ?)");
$stmt -> bind_param("issss", $id, $fname, $lname, $pob, $country);
$id = 1;
$fname = 'Shikhar';
$lname = 'Dhawan';
$pob = 'Delhi';
$country = 'India';
//Executing the statement
$stmt->execute();
//Closing the statement
$stmt->close();
//Closing the connection
$con->close();
?>
Esto producirá el siguiente resultado:
Table Created.....
Ejemplo
También puede ejecutar una declaración creada por la función mysqli_stmt_prepare () -
<?php
$con = mysqli_connect("localhost", "root", "password", "mydb");
$query = "CREATE TABLE Test(Name VARCHAR(255), AGE INT)";
mysqli_query($con, $query);
print("Table Created.....\n");
//Initializing the statement
$stmt = mysqli_stmt_init($con);
mysqli_stmt_prepare($stmt, "INSERT INTO Test values(?, ?)");
mysqli_stmt_bind_param($stmt, "si", $Name, $Age);
$Name = 'Raju';
$Age = 25;
print("Record Inserted.....");
//Executing the statement
mysqli_stmt_execute($stmt);
//Closing the statement
mysqli_stmt_close($stmt);
//Closing the connection
mysqli_close($con);
?>
Esto producirá el siguiente resultado:
Table Created.....
Record Inserted.....