AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Administrar bases de datos / HFSQL / Gestión de la replicación / Funciones WLanguage
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
Deletes a replication between two HFSQL servers. This function must be run on a replication's master HFSQL server, or on an orphaned subscriber server.
Example
Cnt is Connection
...
HRSDeleteConfig(Cnt, ConfigReplication1)
Syntax

Deleting a replication identified by a hHRSConfig variable Hide the details

<Result> = HRSDeleteConfig(<Connection> , <Replication to delete> [, <Type of deletion>])
<Result>: Boolean
  • True if the replication was deleted,
  • False otherwise. HErrorInfo is used to identify the error.
<Connection>: Character string or Connection variable
Connection to the HFSQL server on which the replication is performed. This connection corresponds to:
<Replication to delete>: hRSConfig variable
Name of hRSConfig variable describing the replication to delete.
<Type of deletion>: Optional Integer constant
Type of replication to delete:
hrsDefault
(default value)
Deletes the replication only if the subscriber server is accessible.
hrsIgnoreSubscriberForces the deletion even if the other server cannot be contacted. In this case:
  • the information regarding the replication will not be deleted from the subscriber server.
  • for a bidirectional replication, the replication will not be deleted from the other server. We advise you to perform this deletion from this server as well to avoid a useless memory consumption.
hrsSubscriberForces the deletion of an orphan replication on the subscriber side. In this case, the hRSConfig variable can be retrieved by HRSListConfig associated with the hrsSubscriber constant.
Remark: Before version 190040, this parameter corresponded to a boolean (True equivalent to the hrsIgnoreSubscriber constant and False equivalent to the hrsDefault constant).

Deleting a replication identified by its identifier Hide the details

<Result> = HRSDeleteConfig(<Connection> , <Identifier> [, <Forced deletion>])
<Result>: Boolean
  • True if the replication was deleted,
  • False otherwise. HErrorInfo is used to identify the error.
<Connection>: Character string or Connection variable
Connection to the HFSQL server on which the replication is performed. This connection corresponds to:
<Identifier>: Integer
Identifier of replication to delete. This identifier corresponds to the Identifier property of the hRSConfig variable describing the replication.
<Forced deletion>: Optional boolean
  • True to force the deletion even if the other server cannot be contacted. In this case:
    • the information regarding the replication will not be deleted from the subscriber server.
    • for a bidirectional replication, the replication will not be deleted from the other server. We advise you to perform this deletion from this server as well to avoid a useless memory consumption. .
  • False (default value) to delete the replication only if the subscriber server is accessible.
Component: wd290hf.dll
Versión mínima requerida
  • Versión 18
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 26/05/2022

Señalar un error o enviar una sugerencia | Ayuda local