mysql_stmt_execute
- Provided by: libmariadb-dev (Version: 1:10.11.14-0ubuntu0.24.04.1)
- Source: mariadb
- Report a bug
mysql_stmt_execute - Executes a prepared statement
#include <mysql.h>
int mysql_stmt_execute(MYSQL_STMT * stmt);
Executes a prepared statement which was previously prepared by mysql_stmt_prepare(3). When executed any parameter markers which exist will automatically be replaced with the appropriate data.
Returns zero on success, non-zero on failure.