MySQL 5.7 C API Developer Guide / ... / C API Prepared Statement Interface / C API Prepared Statement Function Descriptions / mysql_stmt_init()
MYSQL_STMT *mysql_stmt_init(MYSQL *mysql) Creates and returns aMYSQL_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.
Out of memory.