mysql_stmt_reset
mysql_stmt_reset resets a prepared statement on both client and server to its post-prepare state, clearing unbuffered results and errors while preserving bindings.
Syntax
my_bool mysql_stmt_reset(MYSQL_STMT * stmt);Parameter
stmt- a statement handle, which was previously allocated by mysql_stmt_init(). Returns zero on success, nonzero if an error occurred.
Description
Resets a prepared statement on the client and server to state after prepare.
Return Value
Returns zero on success, 1 if an error occurred.
See Also
This page is: Copyright © 2026 MariaDB. All rights reserved.
Last updated
Was this helpful?

