1mysql_row_seek(3)             MariaDB Connector/C            mysql_row_seek(3)
2
3
4
5   Name
6       mysql_row_seek - Positions the row cursor to an arbitrary row
7
8   Synopsis
9              #include <mysql.h>
10
11              MYSQL_ROW_OFFSET mysql_row_seek(MYSQL_RES * result,
12                                              MYSQL_ROW_OFFSET offset);
13
14   Description
15       Positions  the row cursor to an arbitrary row in a result set which was
16       obtained by mysql_store_result(3).
17
18   Parameter
19       • result - a result set identifier returned by mysql_store_result(3).
20
21       • offset  -  row  offset.   This  value  can  be  obtained  either   by
22         mysql_row_seek() or mysql_row_tell(3)
23
24   Notes
25       • This  function  will  not  work  if  the  result  set was obtained by
26         mysql_use_result(3).
27
28   Return value
29       Returns the previous row offset.
30
31   See also
32mysql_store_result(3)
33
34mysql_row_tell(3)
35
36
37
38Version 3.2.2                                                mysql_row_seek(3)
Impressum