Frees resources associated with a statement object.
sqlany_free_stmt ( $stmt )
$stmt A statement object returned by the successful execution of sqlany_prepare or sqlany_execute_direct.
Returns nil.
stmt = api.sqlany_prepare(conn, "UPDATE Contacts SET Contacts.ID = Contacts.ID + 1000 WHERE Contacts.ID >= ?" ) rc, param = api.sqlany_describe_bind_param( stmt, 0 ) param.set_value(50) rc = api.sqlany_bind_param( stmt, 0, param ) rc = api.sqlany_execute( stmt ) rc = api.sqlany_free_stmt( stmt ) |
Discuss this page in DocCommentXchange. Send feedback about this page using email. |
Copyright © 2009, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.1 |