PHP.nl

pg_result_seek

pg_result_seek

Set internal row offset in result instance

bool **pg_result_seek** PgSql\Result $result int $row
sets the internal row offset in

the instance. pg_result_seek``result

result``row Row to move the internal offset to in the instance. Rows are numbered starting from zero. PgSql\Result

return.success

Voorbeeld: example

<?php

// Connect to the database
$conn = pg_pconnect("dbname=publisher");

// Execute a query
$result = pg_query($conn, "SELECT author, email FROM authors");

// Seek to the 3rd row (assuming there are 3 rows)
pg_result_seek($result, 2);

// Fetch the 3rd row
$row = pg_fetch_row($result);
 
?>

pg_fetch_row``pg_fetch_assoc``pg_fetch_array``pg_fetch_object``pg_fetch_result