ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / Managing databases / HFSQL / Managing replications / WLanguage functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Lists the replications available on a master or subscriber HFSQL server.
Example
// Déclaration des variables
Cnx is Connection
listeRS is array of hRSConfig

// Configuration de la connexion
...

// Liste des réplications
listeRS = HRSListConfig(Cnx)
FOR EACH ConfigRéplication OF listeRS
	Trace(ConfigRéplication.Serveur)
END
Syntax
<Result> = HRSListConfig(<Connection> [, <Option>])
<Result>: Array of hRSConfig
Array of hRSConfig variables describing the different replications defined on the HFSQL server.
<Connection>: Character string or Connection variable
Connection to the master HFSQL server (on which the replications are defined). This connection corresponds to:
<Option>: Integer constant
Used to list the replications for which the current server is master or subscriber:
hrsMaster
(Default value)
Lists the replications for which the current server is master.
hrsSubscriberLists the replications for which the current server is subscriber.
Note: In this case, the hRSConfig variable corresponding to the replication has the following characteristics:
  • Bidirectional replication: the identifier corresponds to the replication identifier on the publisher server.
  • One-way replication: the identifier is 0.
  • The Server property corresponds to the name of the master server.
  • The Description and Scheduling properties are not available.
Component: wd300hf.dll
Minimum version required
  • Version 18
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/21/2024

Send a report | Local help