ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / Managing databases / HFSQL / HFSQL Client/Server functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Returns the characteristics of a scheduled task in a hScheduledTask variable. You can for example read some characteristics of scheduled task in order to modify them later with HModifyTask.
Example
MaTâche is hScheduledTask
// Récupération des caractéristiques de la tâche planifiée
MaTâche = HInfoTask(MaConnexion, IDTâche)
// Modification de la tâche planifiée
MaTâche.Hour = SAI_Heure.Heure + 1
HModifyTask(MaConnexion, IDTâche, MaTâche)
Syntax
<Result> = HInfoTask(<Connection> , <Scheduled task>)
<Result>: hScheduledTask variable
hScheduledTask variable containing the characteristics of the specified scheduled task.
<Connection>: Character string or Connection variable
Connection for which a task must be managed. This connection corresponds to:
<Scheduled task>: Integer
Identifier of scheduled task, returned by HAddTask and HListTask.
Remarks
  • To check the existence of a task, use the HListTask function: simply check whether the task identifier is present among the tasks returned by the HListTask function..
  • To retrieve the characteristics of a scheduled task, you must have the rights to connect (hRightsConnection or hRightsEncryptedConnection) to the database that contains the stored procedure.
Component: wd300hf.dll
Minimum version required
  • Version 14
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/24/2024

Send a report | Local help