You've already forked mariadb-connector-c
mirror of
https://github.com/mariadb-corporation/mariadb-connector-c.git
synced 2025-08-08 14:02:17 +03:00
38 lines
998 B
Groff
38 lines
998 B
Groff
.\" Automatically generated by Pandoc 3.5
|
|
.\"
|
|
.TH "mysql_stmt_data_seek" "3" "" "Version 3.3" "MariaDB Connector/C"
|
|
.SS Name
|
|
mysql_stmt_data_seek \- Seeks to an arbitrary row in statement result
|
|
set
|
|
.SS Synopsis
|
|
.IP
|
|
.EX
|
|
#include \f[B]<mysql.h>\f[R]
|
|
|
|
void mysql_stmt_data_seek(MYSQL_STMT * stmt,
|
|
my_ulonglong offset);
|
|
.EE
|
|
.SS Description
|
|
Seeks to an arbitrary row in statement result set obtained by a previous
|
|
call to \f[B]mysql_stmt_store_result(3)\f[R].
|
|
.SS Parameter
|
|
.IP \[bu] 2
|
|
\f[CR]stmt\f[R] \- a statement handle, which was previously allocated by
|
|
\f[B]mysql_stmt_init(3)\f[R].
|
|
.IP \[bu] 2
|
|
\f[CR]offset\f[R] \- row offset.
|
|
This value must between 0 and number of rows \- 1.
|
|
.SS Return value
|
|
Returns void
|
|
.SS Notes
|
|
.IP \[bu] 2
|
|
The number of rows can be obtained with the function
|
|
\f[B]mysql_stmt_num_rows(3)\f[R].
|
|
.SS See Also
|
|
.IP \[bu] 2
|
|
\f[B]mysql_stmt_row_tell(3)\f[R]
|
|
.IP \[bu] 2
|
|
\f[B]mysql_stmt_store_result(3)\f[R]
|
|
.IP \[bu] 2
|
|
\f[B]mysql_stmt_num_rows(3)\f[R]
|