MYSQL_STMT

You are viewing an old version of this article. View the current version here.

MYSQL_STMT structure is a handle for a prepared statement. The handle will be allocated by mysql_stmt_init() and released by mysql_stmt_close().

  • All members of MYSQL_STMT are private and not intended for application use.
  • Multiple statement handles can be opened within the same connection.
  • After a successfull call to mysql_stmt_prepare() a prepared statement will also allocate resources on server
  • Closing the connection with mysql_close() invalidates the statements but doesn't free resources on client.

Comments

Comments loading...
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.