my_bool mysql_stmt_reset(MYSQL_STMT *stmt)
        
Description
          Reset the prepared statement on the client and server to state
          after prepare. This is mainly used to reset data sent with
          mysql_stmt_send_long_data(). Any open
          cursor for the statement is closed.
        
          To re-prepare the statement with another query, use
          mysql_stmt_prepare().
        
This function was added in MySQL 4.1.1. Cursor support was added in MySQL 5.
Return Values
Zero if the statement was reset successfully. Non-zero if an error occurred.
Errors
              CR_COMMANDS_OUT_OF_SYNC
            
Commands were executed in an improper order.
              CR_SERVER_GONE_ERROR
            
The MySQL server has gone away.
              CR_SERVER_LOST
            
The connection to the server was lost during the query
              CR_UNKNOWN_ERROR
            
An unknown error occurred.
Ésta es una traducción del manual de referencia de MySQL, que puede encontrarse en dev.mysql.com. El manual de referencia original de MySQL está escrito en inglés, y esta traducción no necesariamente está tan actualizada como la versión original. Para cualquier sugerencia sobre la traducción y para señalar errores de cualquier tipo, no dude en dirigirse a mysql-es@vespito.com.

