|
|
|
|
|
ExecutionCompleted (Property) In french: ExécutionTerminée
Available only with these kinds of connection
The ExecutionCompleted property is used to determine whether the execution of a query or view (HFSQL Classic or Client/Server) is completed.
IF MyQuery.ExecutionCompleted = True THEN
Info("The number of records found in the view is: " + HNbRec(hStateActive))
ELSE
Info("The number of records already retrieved is: " + HNbRec(hNonBlocking))
END
Syntax
<Result> = <Element used>.ExecutionCompleted
<Result>: Boolean - True if the execution of the view or query is completed,
- False otherwise.
<Element used>: Character string Name of the query or view to use. Remarks - The ExecutionCompleted property can only be used on HFSQL Classic and Client/Server views and queries.
- For all the other elements (data files, queries that use Native Connectors, etc.), the ExecutionCompleted property always returns True.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|