AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Administrar bases de datos / HFSQL / Funciones HFSQL Client/Server
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
Forces the execution of a scheduled backup. The scheduled backup is run during the call to the function instead of being run according to its scheduling.
Example
// Describe the connection
DatabaseConnection is Connection
 
hBck is hBackupDescription
hBck.WithIndex = False // Backup without index
hBck.Source = DatabaseConnection.Database
hBck.Description = DatabaseConnection.Database
hBck.SchedulingFull.Month = "12"
hBck.SchedulingFull.Hour = "22"
hBck.SchedulingDifferential.Month = "12"
hBck.SchedulingDifferential.Hour = "23"
// Create the scheduled backup
HAddScheduledBackup(DatabaseConnection, hBck)
// Immediate execution
IF HExecuteScheduledBackup(DatabaseConnection, hBck.Identifier, False) = False THEN
Error("HExecuteScheduledBackup failed (full backup): " + ...
HErrorInfo(hErrFullDetails))
END
Syntax
<Result> = HExecuteScheduledBackup(<Connection> , <Backup identifier> [, <Type of backup>])
<Result>: Boolean
  • True if the scheduled backup was immediately triggered,
  • False if an error occurred.
<Connection>: Character string or Connection variable
Connection for which the scheduled backup must be performed. This connection corresponds to:
<Backup identifier>: Integer
Identifier of the scheduled backup to run.
<Type of backup>: Optional boolean
Type of backup to perform:
  • True (default value): Differential backup.
  • False: Full backup.
Remark: A differential backup can be performed only if the backup task includes a differential scheduling.
Component: wd290hf.dll
Versión mínima requerida
  • Versión 15
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