mysql_stmt_init
Syntax
MYSQL_STMT * mysql_stmt_init(MYSQL * mysql);
mysql
- a mysql handle, which was previously allocated by mysql_init() or mysql_real_connect().
Description
Initializes and allocates memory for a prepared statement. Returns a pointer to a MYSQL_STMT structure or NULL if an error occurred.
See Also
Last updated
Was this helpful?