|
|
|
|
|
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). Caution: The release of a request is mandatory, even if the execution of the request has failed.
ResSQL = SQLExec("SELECT* FROM FACT", "REQ1")
IF ResSQL = False THEN
SQLInfo("REQ1")
Info("Erreur SQL: " + SQL.MesError)
ELSE
SQLTable("REQ1", TABLE_Table1)
END
SQLClose("REQ1")
Syntax <Query name>: Character string Name of the query:
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|