MySQL :: MySQL 8.4 C API Developer Guide :: 5.4.69 mysql_row_seek() (original) (raw)
Description
Sets the row cursor to an arbitrary row in a query result set. The offset
value is a row offset, typically a value returned frommysql_row_tell() or frommysql_row_seek(). This value is not a row number; to seek to a row within a result set by number, use mysql_data_seek() instead.
This function requires that the result set structure contains the entire result of the query, somysql_row_seek() may be used only in conjunction withmysql_store_result(), not withmysql_use_result().