1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 08:47:17 +01:00
SqMod/vendor/MDBC/man/mysql_stmt_store_result.3
2021-09-21 20:59:01 +03:00

39 lines
1.0 KiB
Groff

.\" Automatically generated by Pandoc 2.5
.\"
.TH "mysql_stmt_store_result" "3" "" "Version 3.2.2" "MariaDB Connector/C"
.hy
.SS Name
.PP
mysql_stmt_store_result \- Transfers a result set from a prepared
statement
.SS Synopsis
.IP
.nf
\f[C]
#include <mysql.h>
int mysql_stmt_store_result(MYSQL_STMT * stmt);
\f[R]
.fi
.SS Description
.PP
You must call mysql_stmt_store_result() for every query that
successfully produces a result set only if you want to buffer the
complete result set by the client, so that the subsequent
\f[B]mysql_stmt_fetch(3)\f[R] call returns buffered data.
.SS Parameter
.IP \[bu] 2
\f[C]stmt\f[R] \- a statement handle, which was previously allocated by
\f[B]mysql_stmt_init(3)\f[R].
.SS Return value
.PP
Returns zero on success, nonzero if an error occurred.
## Notes * You can detect whether the statement produced a result set by
checking the return value of \f[B]mysql_stmt_field_count(3)\f[R]
function.
.SS See Also
.IP \[bu] 2
\f[B]mysql_stmt_field_count(3)\f[R]
.IP \[bu] 2
\f[B]mysql_stmt_fetch(3)\f[R]