Função PHP mysqli_stmt_data_seek ()
Definição e Uso
A função aceita um objeto de instrução e um valor inteiro como parâmetros e busca a linha especificada no conjunto de resultados da instrução fornecida (se houver). Certifique-se de ter armazenado o conjunto de resultados (usando mysqli_stmt_data_seek ()) antes de invocar esta função.
Sintaxe
mysqli_stmt_data_seek($stmt);
Parâmetros
Sr. Não | Parâmetro e Descrição |
---|---|
1 | stmt(Mandatory) Este é um objeto que representa uma declaração preparada. |
2 | offset(Mandatory) Este é um valor inteiro que representa a linha desejada (deve estar entre 0 e o número total de linhas no conjunto de resultados). |
Valores Retornados
A função PHP mysqli_stmt_data_seek () retorna não retorna nenhum valor.
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
O exemplo a seguir demonstra o uso da função mysqli_stmt_data_seek () (no estilo procedural) -
<?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);
?>
Isso produzirá o seguinte resultado -
Table Created.....
Record Inserted.....
Id: 3
fname: Kumara
lname: Sangakkara
pob: Matale
country: Srilanka
Exemplo
No estilo orientado a objetos, a sintaxe desta função é $ stmt-> data_seek (); 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)");
$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();
?>
Isso produzirá o seguinte resultado -
Table Created.....
Name: Sarmista
Age: 27