Files
mariadb-connector-c/man/mysql_stmt_param_count.3
Georg Richter 10c67ee835 Man page fixes:
- Install created man pages when building with WITH_DOCS=ON
- Set version to 3.4
2024-10-25 10:37:47 +02:00

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]