Función PHP mysqli_stmt_data_seek ()
Definición y uso
La función acepta un objeto de declaración y un valor entero como parámetros y busca la fila especificada en el conjunto de resultados de la declaración dada (si existe). Asegúrese de haber almacenado el conjunto de resultados (usando mysqli_stmt_data_seek ()) antes de invocar esta función.
Sintaxis
mysqli_stmt_data_seek($stmt);
Parámetros
No Señor | Descripción de parámetros |
---|---|
1 | stmt(Mandatory) Este es un objeto que representa una declaración preparada. |
2 | offset(Mandatory) Este es un valor entero que representa la fila deseada (debe estar entre 0 y el número total de filas en el conjunto de resultados). |
Valores devueltos
La función PHP mysqli_stmt_data_seek () devuelve no devuelve ningún valor.
Versión PHP
Esta función se introdujo por primera vez en PHP Versión 5 y funciona en todas las versiones posteriores.
Ejemplo
El siguiente ejemplo demuestra el uso de la función mysqli_stmt_data_seek () (en estilo procedimental):
<?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);
?>
Esto producirá el siguiente resultado:
Table Created.....
Record Inserted.....
Id: 3
fname: Kumara
lname: Sangakkara
pob: Matale
country: Srilanka
Ejemplo
En el estilo orientado a objetos, la sintaxis de esta función es $ stmt-> data_seek (); 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");
$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();
?>
Esto producirá el siguiente resultado:
Table Created.....
Name: Sarmista
Age: 27