1mysql_stmt_data_seek(3) MariaDB Connector/C mysql_stmt_data_seek(3)
2
3
4
5 Name
6 mysql_stmt_data_seek - Seeks to an arbitrary row in statement result
7 set
8
9 Synopsis
10 #include <mysql.h>
11
12 void mysql_stmt_data_seek(MYSQL_STMT * stmt,
13 my_ulonglong offset);
14
15 Description
16 Seeks to an arbitrary row in statement result set obtained by a previ‐
17 ous call to mysql_stmt_store_result(3).
18
19 Parameter
20 • stmt - a statement handle, which was previously allocated by
21 mysql_stmt_init(3).
22
23 • offset - row offset. This value must between 0 and number of rows -
24 1.
25
26 Return value
27 Returns void
28
29 Notes
30 • The number of rows can be obtained with the function
31 mysql_stmt_num_rows(3).
32
33 See Also
34 • mysql_stmt_row_tell(3)
35
36 • mysql_stmt_store_result(3)
37
38 • mysql_stmt_num_rows(3)
39
40
41
42Version 3.2.2 mysql_stmt_data_seek(3)