1mysql_stmt_row_seek(3)        MariaDB Connector/C       mysql_stmt_row_seek(3)
2
3
4
5   Name
6       mysql_stmt_row_seek - Positions row cursor.
7
8   Synopsis
9              #include <mysql.h>
10
11              MYSQL_ROW_OFFSET mysql_stmt_row_seek(MYSQL_STMT * stmt,
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_stmt_store_result(3).
17
18   Parameter
19       • stmt  -  a  statement  handle,  which  was  previously  allocated  by
20         mysql_stmt_init(3).
21
22       • offset   -  row  offset.   This  value  can  be  obtained  either  by
23         mysql_stmt_row_seek() or mysql_stmt_row_tell(3).
24
25   Return value
26       Returns the previous row offset.
27
28   Notes
29       The result set must be obtained by mysql_use_result(3).
30
31   See Also
32mysql_stmt_row_tell(3)
33
34mysql_stmt_store_result(3)
35
36
37
38Version 3.2.2                                           mysql_stmt_row_seek(3)
Impressum