MySQL :: MySQL 8.4 C API Developer Guide :: 6.4.16 mysql_stmt_init() (original) (raw)
6.4.16 mysql_stmt_init()
MYSQL_STMT *
mysql_stmt_init(MYSQL *mysql)
Description
Creates and returns a MYSQL_STMT
handler. The handler should be freed withmysql_stmt_close(), at which point the handler becomes invalid and should no longer be used.
See alsoSection 6.2, “C API Prepared Statement Data Structures”, for more information.
Return Values
A pointer to a MYSQL_STMT
structure in case of success. NULL
if out of memory.
Errors
- CR_OUT_OF_MEMORY
Out of memory.