This method is used with a variable of the PREPARED data type:
variable.Free()
It frees the memory allocated to the prepared statement and makes it possible to use this PREPARED variable to prepare another SQL statement.
This method accepts no parameters and returns sqlca.sqlcode. To be able to free a variable, it should be previously initialized using prepare():
CALL prep_v.Free()