-
Notifications
You must be signed in to change notification settings - Fork 258
mysql_stmt_param_count
Georg Richter edited this page Aug 31, 2018
·
1 revision
mysql_stmt_param_count - Returns number of parameters
#include <mysql.h>
unsigned long mysql_stmt_param_count(MYSQL_STMT * stmt);
Returns the number of parameter markers present in the prepared statement. Parameter markers are specified as ?
(question mark)
-
stmt
- a statement handle, which was previously allocated by mysql_stmt_init().
The number of parameter markers in prepared statement.
- This function will not deliver a valid result until mysql_stmt_prepare()() was called.
MariaDB Connector/C Reference