1mysql_row_tell(3) MariaDB Connector/C mysql_row_tell(3)
2
3
4
5 Name
6 mysql_row_tell - Returns row offset of a result cursor
7
8 Synopsis
9 #include <mysql.h>
10
11 MYSQL_ROW_OFFSET mysql_row_tell(MYSQL_RES * res);
12
13 Description
14 Returns the row offset of a result cursor. The returned offset value
15 can be used to reposition the result cursor by calling
16 mysql_row_seek(3).
17
18 Parameter
19 • res - a result set identifier returned by mysql_store_result(3).
20
21 Notes
22 • This function will not work if the result set was obtained by
23 mysql_use_result(3).
24
25 See also
26 • mysql_store_result(3)
27
28 • mysql_row_seek(3)
29
30
31
32Version 3.2.2 mysql_row_tell(3)