Skip to content

SQLClose Command

Obsolete

Refer to the SQLClose method in the cSQLStatement class.

Syntax

SQLClose hstmt

Description

The SQLClose command closes the statement and frees all associated resources.

Example

Open Customer
SQLFileConnect Customer To hdbc
SQLOpen hdbc To hstmt
SQLExecDirect hstmt "UPDATE CUSTOMER SET AccntMngr = 'John' WHERE AccntMngr = 'Mary'"
SQLClose hstmt