ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage properties / HFSQL properties
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
ExecutionCompleted (Property)
In french: ExécutionTerminée
HFSQL ClassicHFSQL Client/ServerAvailable 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.
Example
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.
Minimum version required
  • Version 11
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help