Initializes a query and declares this query to the database server in order to optimize the next executions of this query. This query is not run. Then, the query can be run by
HExecuteQuery. This function is available for queries with or without bind.
We recommend that you use this function when the same query is run successively and when only some of the query parameters are modified at each execution.
This function is optional and it can only be used on the Client/Server databases (currently available for AS/400).
For the other databases accessed by a Native Connector, OLE DB or ODBC, HPrepareSQLQuery runs the query. This function cannot be used on the HFSQL databases (HFSQL Classic or Client/Server) and on the xBase databases.
Remark: From version 19, HFSQL is the new name of HyperFileSQL.
hPrepareQuery(QRY_MyQry, MyConnection, hQueryWithoutCorrection)
FOR I = 1 TO 10
QRY_MyQry.lastname = "LastName" + I
QRY_MyQry.firstname = "FirstName" + I
QRY_MyQry.age_ = I
HExecuteQuery(QRY_MyQry)
END
Syntax
<Result> = HPrepareQuery(<Query> , <Connection> [, <Mode>])
<Result>: Boolean
- True if the query was initialized,
- False otherwise. HErrorInfo returns more details about the problem.
<Query>: Character string (with or without quotes)
- Name and full path of query (".WDR" file) to initialize.
- Logical name of query to initialize.
If a query with the same name is already declared, it is replaced by the new query.
<Connection>: Character string (with or without quotes) or Connection variable
Connection through which the query will be run. This connection corresponds to:
<Mode>: Optional Integer constant
Option for initializing the query: