ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / Managing databases / HFSQL Cluster / WLanguage functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
HClusterSynchronizationInfo (Function)
In french: HClusterInfoSynchronisation
HFSQL Client/ServerAvailable only with this kind of connection
Returns the progress of synchronization for a node of an HFSQL cluster.
Reminder: Synchronization is automatically performed, for example, when a cluster node has stopped abnormally: on restart, this node synchronizes with another node containing the updated data.
Example
// Etat de la synchronisation
EtatActuel is string
EtatActuel = HClusterSynchronizationInfo("MonCoordinateur","MonMotDePasse", "NomNoeud")
Trace("Etat en cours " + ExtractString(EtatActuel, 1, CR) + ...
	"Numéro étape " + ExtractString(EtatActuel, 2, CR) + ...
	"Nombre d'étapes " + ExtractString(EtatActuel, 3, CR) + ...
	"Avancement " + ExtractString(EtatActuel, 4, CR))
Syntax
<Result> = HClusterSynchronizationInfo(<Coordinator> , <Password> , <Node>)
<Result>: Character string
Information about node synchronization. This result has the following format:
<Description of Current Step> + CR + <Number of Current Step> + CR +
<Number of Steps> + CR + <Progress (in per thousand)>
<Coordinator>: Character string
DNS name of the cluster coordinator's machine.
<Password>: Character string or Secret string
Password used to connect to the coordinator. This password was given when installing the cluster.
New in version 2025
Secret strings: If you use the secret string vault, the type of secret string used for this parameter must be "ANSI or Unicode string".
To learn more about secret strings and how to use the vault, see Secret string vault.
<Node>: Character string
DNS name of node currently synchronized.
Business / UI classification: Business Logic
Component: wd300hf.dll
Minimum version required
  • Version 21
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/16/2025

Send a report | Local help