mysql_stmt_execute
Syntax
int mysql_stmt_execute(MYSQL_STMT * stmt);
stmt
- A statement handle, which was previously allocated by mysql_stmt_init().
Description
Executes a prepared statement which was previously prepared by mysql_stmt_prepare(). When executed any parameter markers which exist will automatically be replaced with the appropriate data.
Returns zero on success, non-zero on failure.
See Also
Last updated
Was this helpful?