|
|
|
|
|
|
|
|
|
|
SQLClose (Function) In french: SQLFerme Declares the end of execution of a query and frees the memory resources allocated during the execution of the query ( SQLExec or SQLExecWDR). Note: The memory allocated to the query must be released even if the query execution has failed.
ResSQL = SQLExec("SELECT* FROM INV", "QRY1")
IF ResSQL = False THEN
SQLInfo("QRY1")
Info("SQL error: " + SQL.MesError)
ELSE
SQLTable("QRY1", TABLE_Table1)
END
SQLClose("QRY1")
Syntax <Query name>: Character string Name of the query:
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|