MYSQL_STMT *mysql_stmt_init(MYSQL *mysql)
Description
Create a MYSQL_STMT
handle. The handle should
be freed with mysql_stmt_close(MYSQL_STMT
*)
.
This function was added in MySQL 4.1.2.
Return values
A pointer to a MYSQL_STMT
structure in case
of success. NULL
if out of memory.
Errors
Out of memory.
User Comments
Add your own comment.