mirror of
https://github.com/mariadb-corporation/mariadb-connector-c.git
synced 2025-07-26 08:41:58 +00:00
32 lines
855 B
Groff
32 lines
855 B
Groff
.\" Automatically generated by Pandoc 3.5
|
|
.\"
|
|
.TH "mysql_stmt_param_count" "3" "" "Version 3.4" "MariaDB Connector/C"
|
|
.SS Name
|
|
mysql_stmt_param_count \- Returns number of parameters
|
|
.SS Synopsis
|
|
.IP
|
|
.EX
|
|
#include \f[B]<mysql.h>\f[R]
|
|
|
|
unsigned long mysql_stmt_param_count(MYSQL_STMT * stmt);
|
|
.EE
|
|
.SS Description
|
|
Returns the number of parameter markers present in the prepared
|
|
statement.
|
|
Parameter markers are specified as \f[CR]?\f[R] (question mark)
|
|
.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].
|
|
.SS Return value
|
|
The number of parameter markers in prepared statement.
|
|
.SS Notes
|
|
.IP \[bu] 2
|
|
This function will not deliver a valid result until
|
|
mysql_stmt_prepare()() was called.
|
|
.SS See Also
|
|
.IP \[bu] 2
|
|
mysql_stmt_prepare()()
|
|
.IP \[bu] 2
|
|
\f[B]mysql_stmt_field_count(3)\f[R]
|