Funzione PHP mysqli_stmt_data_seek ()
Definizione e utilizzo
La funzione accetta un oggetto istruzione e un valore intero come parametri e cerca la riga specificata nel set di risultati dell'istruzione data (se presente). Assicurati di aver memorizzato il set di risultati (usando mysqli_stmt_data_seek ()) prima di richiamare questa funzione.
Sintassi
mysqli_stmt_data_seek($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 PHP mysqli_stmt_data_seek () restituisce non restituisce alcun valore.
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 dimostra l'utilizzo della funzione mysqli_stmt_data_seek () (in stile procedurale) -
<?php
$con = mysqli_connect("localhost", "root", "password", "mydb");
mysqli_query($con, "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");
mysqli_query($con, "INSERT INTO myplayers values(1, 'Sikhar', 'Dhawan', 'Delhi', 'India')");
mysqli_query($con, "INSERT INTO myplayers values(2, 'Jonathan', 'Trott', 'CapeTown', 'SouthAfrica')");
mysqli_query($con, "INSERT INTO myplayers values(3, 'Kumara', 'Sangakkara', 'Matale', 'Srilanka')");
print("Record Inserted.....\n");
//Retrieving the contents of the table
$stmt = mysqli_prepare($con, "SELECT * FROM myplayers");
//Executing the statement
mysqli_stmt_execute($stmt);
//Binding values in result to variables
mysqli_stmt_bind_result($stmt, $id, $fname, $lname, $pob, $country);
//Storing the result
mysqli_stmt_store_result($stmt);
//Moving the seek
mysqli_stmt_data_seek($stmt, 2);
mysqli_stmt_fetch($stmt);
print("Id: ".$id."\n");
print("fname: ".$fname."\n");
print("lname: ".$lname."\n");
print("pob: ".$pob."\n");
print("country: ".$country."\n");
print("\n");
//Closing the statement
mysqli_stmt_close($stmt);
//Closing the connection
mysqli_close($con);
?>
Questo produrrà il seguente risultato:
Table Created.....
Record Inserted.....
Id: 3
fname: Kumara
lname: Sangakkara
pob: Matale
country: Srilanka
Esempio
Nello stile orientato agli oggetti la sintassi di questa funzione è $ stmt-> data_seek (); 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();
//Binding variables to resultset
$stmt->bind_result($name, $age);
$stmt->store_result();
//Moving the seek
$stmt->data_seek(2);
$stmt->fetch();
print("Name: ".$name."\n");
print("Age: ".$age."\n");
//Closing the statement
$stmt->close();
//Closing the connection
$con->close();
?>
Questo produrrà il seguente risultato:
Table Created.....
Name: Sarmista
Age: 27