my_bool mysql_stmt_reset(MYSQL_STMT *stmt)
      
Description
        Resets a prepared statement on client and server to state after
        prepare. It resets the statement on the server, data sent using
        mysql_stmt_send_long_data(),
        unbuffered result sets and current errors. It does not clear
        bindings or stored result sets. Stored result sets will be
        cleared when executing the prepared statement (or closing it).
      
        To re-prepare the statement with another query, use
        mysql_stmt_prepare().
      
Return Values
Zero if the statement was reset successfully. Nonzero if an error occurred.
Errors
Commands were executed in an improper order.
The MySQL server has gone away.
The connection to the server was lost during the query
An unknown error occurred.


User Comments
Add your own comment.