1mysql_stmt_row_tell(3) MariaDB Connector/C mysql_stmt_row_tell(3)
2
3
4
5 Name
6 mysql_stmt_row_tell - Returns position of row cursor
7
8 Synopsis
9 #include <mysql.h>
10
11 MYSQL_ROW_OFFSET mysql_stmt_row_tell(MYSQL_STMT * stmt);
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_stmt_row_seek(3).
17
18 Parameter
19 • stmt - a statement handle, which was previously allocated by
20 mysql_stmt_init(3).
21
22 Return value
23 Returns the current position of the row cursor.
24
25 Notes
26 • This function can be used for buffered result sets only, which can be
27 obtained by executing the mysql_stmt_store_result(3) function.
28
29 See Also
30 • mysql_stmt_row_seek(3)
31
32 • mysql_stmt_store_result(3)
33
34
35
36Version 3.2.2 mysql_stmt_row_tell(3)