Funzione mysqli_stmt_store_result () di PHP
Definizione e utilizzo
La funzione mysqli_stmt_store_result () accetta un oggetto istruzione come parametro e memorizza il gruppo di risultati dell'istruzione data localmente, se esegue un'istruzione SELECT, SHOW o DESCRIBE.
Sintassi
mysqli_stmt_store_result($stmt);
Parametri
Suor n | Parametro e descrizione |
---|---|
1 |
stmt(Mandatory) Questo è un oggetto che rappresenta un'istruzione preparata. |
2 |
offset(Mandatory) Questo è un valore intero che rappresenta la riga desiderata (deve essere compreso tra 0 e il numero totale di righe nel set di risultati). |
Valori restituiti
La funzione mysqli_stmt_attr_get () di PHP restituisce un valore booleano che è TRUE in caso di successo e FALSE in caso di fallimento.
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_stmt_store_result () (in stile procedurale) -
<?php
$con = mysqli_connect("localhost", "root", "password", "mydb");
mysqli_query($con, "CREATE TABLE Test(Name VARCHAR(255), AGE INT)");
mysqli_query($con, "insert into Test values('Raju', 25),('Rahman', 30),('Sarmista', 27)");
print("Table Created.....\n");
//Reading records
$stmt = mysqli_prepare($con, "SELECT * FROM Test");
//Executing the statement
mysqli_stmt_execute($stmt);
//Storing the result
mysqli_stmt_store_result($stmt);
//Number of rows
$count = mysqli_stmt_num_rows($stmt);
print("Number of rows in the table: ".$count."\n");
//Closing the statement
mysqli_stmt_close($stmt);
//Closing the connection
mysqli_close($con);
?>
Questo produrrà il seguente risultato:
Table Created.....
Number of rows in the table: 3
Esempio
Nello stile orientato agli oggetti la sintassi di questa funzione è $ stmt-> store_result (); Di seguito è riportato l'esempio di questa funzione nello stile orientato agli oggetti $ minus;
<?php
//Creating a connection
$con = new mysqli("localhost", "root", "password", "mydb");
$con -> query("CREATE TABLE Test(Name VARCHAR(255), AGE INT)");
$con -> query("insert into Test values('Raju', 25),('Rahman', 30),('Sarmista', 27)");
print("Table Created.....\n");
$stmt = $con -> prepare( "SELECT * FROM Test");
//Executing the statement
$stmt->execute();
//Storing the result
$stmt->store_result();
print("Number of rows ".$stmt ->num_rows);
//Closing the statement
$stmt->close();
//Closing the connection
$con->close();
?>
Questo produrrà il seguente risultato:
Table Created.....
Number of rows: 3