mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-07-12 11:57:11 +02:00
Add MariaDB Connector/C as a built-in alternative (v3.2.3).
This commit is contained in:
38
vendor/MDBC/man/mysql_stmt_store_result.3
vendored
Normal file
38
vendor/MDBC/man/mysql_stmt_store_result.3
vendored
Normal file
@ -0,0 +1,38 @@
|
||||
.\" 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]
|
Reference in New Issue
Block a user