Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
文オブジェクトに関連付けられているリソースを解放します。
sqlany_free_stmt ( $stmt )
$stmt sqlany_prepare または sqlany_execute_direct の実行によって返された文オブジェクト。
NULL を返します。
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 )