mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-07-03 23:47:12 +02:00
Add MariaDB Connector/C as a built-in alternative (v3.2.3).
This commit is contained in:
37
vendor/MDBC/man/mysql_stmt_num_rows.3
vendored
Normal file
37
vendor/MDBC/man/mysql_stmt_num_rows.3
vendored
Normal file
@ -0,0 +1,37 @@
|
||||
.\" Automatically generated by Pandoc 2.5
|
||||
.\"
|
||||
.TH "mysql_stmt_num_rows" "3" "" "Version 3.2.2" "MariaDB Connector/C"
|
||||
.hy
|
||||
.SS Name
|
||||
.PP
|
||||
mysql_stmt_num_rows \- Returns number of rows in a prepared statement
|
||||
result set
|
||||
.SS Synopsis
|
||||
.IP
|
||||
.nf
|
||||
\f[C]
|
||||
#include <mysql.h>
|
||||
|
||||
unsigned long long mysql_stmt_num_rows(MYSQL_STMT * stmt);
|
||||
\f[R]
|
||||
.fi
|
||||
.SS Description
|
||||
.PP
|
||||
Returns the number of rows in the result set.
|
||||
The use of mysql_stmt_num_rows() depends on whether or not you used
|
||||
\f[B]mysql_stmt_store_result(3)\f[R] to buffer the entire result set in
|
||||
the statement handle.
|
||||
.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
|
||||
Number of rows in the result set
|
||||
.SS Notes
|
||||
.IP \[bu] 2
|
||||
If you use \f[B]mysql_stmt_store_result(3)\f[R], mysql_stmt_num_rows()
|
||||
may be called immediately.
|
||||
.SS See Also
|
||||
.IP \[bu] 2
|
||||
\f[B]mysql_stmt_store_result(3)\f[R]
|
Reference in New Issue
Block a user