ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / Managing databases / HFSQL / HFSQL Client/Server functions
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
<Source>.TrackStop (Function)
In french: <Source>.SurveilleStop
HFSQL Client/ServerAvailable only with this kind of connection
Stops tracking a data file on an HFSQL server. This track was started by <Source>.Track.
Example
// Lance la surveillance du fichier de données Commande
// La procédure TraiteCommande est appelée pour tout ajout d'enregistrement dans le fichier de données
Commande.Surveille(TraiteCommande, hNumEnrTous, hsAjout)
 
...
// Arrête la surveillance du fichier de données Commande
Commande.SurveilleStop(TraiteCommande, hNumEnrTous)
Syntax
<Result> = <Source>.TrackStop(<WLanguage procedure> [, <Record number>])
<Result>: Boolean
  • True if the tracking was stopped,
  • False otherwise (tracking not found for example). To get the details of the error, use ErrorInfo.
<Source>: Type corresponding to the specified source
Name of HFSQL data file to use.
<WLanguage procedure>: Procedure name
Name of WLanguage procedure not to be called anymore to track the data file.
<Record number>: Optional integer
Number of the record not to track anymore.
If this parameter is not specified or corresponds to the hRecNumAll constant, <Source>.TrackStop will stop tracking all the data file records (i.e. the entire data file).
Remarks
<Source>.Track and <Source>.TrackStop can be used in a Windows service.
Component: wd270hf.dll
Minimum version required
  • Version 25
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/30/2023

Send a report | Local help