Search Results
This function moves the result set pointer of the buffered result set to an arbitrary row specified by the offset parameter. This function works only on the buffered internal result set. mysqli_stmt_store_result () must be called prior to mysqli_stmt_data_seek ().
int offset); Seeks to an arbitrary result pointer in the statement result set. mysqli_stmt_store_result must be called prior to mysqli_stmt_data_seek. Parameters stmt Procedural style only: A statement identifier returned by mysqli_stmt_init. offset Must be between zero and the total number of rows minus one (0.. mysqli_stmt_num_rows - 1).
Definition and Usage The mysqli_data_seek () function adjusts the result pointer to an arbitrary row in the result-set.
Definition and Usage The function accepts a statement object and an integer value as parameters and seeks to the specified row in the result set of the given statement (if any). Make sure that you have stored the result set (using mysqli_stmt_data_seek ()) before invoking this function.
The PHP mysqli_stmt::data_seek () / mysqli_stmt_data_seek () function is used to seek to an arbitrary result pointer in the statement result set.
mysqli_stmt::data_seek -- mysqli_stmt_data_seek — Seeks to an arbitrary row in statement result set
People also ask
What is mysqli_stmt_data_seek?
What does mysqli_data_seek() do?
What is mysqli reference seek to row number 15 in the result-set?
The mysqli_data_seek () function seeks to an arbitrary result pointer specified by the offset in the result set represented by result. The offset parameter must be between zero and the total number of rows minus one (0.. mysqli_num_rows () - 1).
