AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Administrar bases de datos / HFSQL / Funciones HFSQL Client/Server
  • Necessary rights
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
Modifies a backup scheduling. This scheduling was described by a hBackupDescription variable.
Example
// Describe the connection
MyDatabaseConnection is Connection
 
arrBck is dynamic array of hBackupDescription
arrBck = HListScheduledBackup(MyDatabaseConnection)
hBck is hBackupDescription
 
FOR EACH hBck OF arrBck
IF hBck.LimitNumberBackups = 3 THEN
hBck.LimitNumberBackups = 5
HModifyScheduledBackup(MyDatabaseConnection, hBck)
END
END
Syntax
<Result> = HModifyScheduledBackup(<Connection> , <Scheduled backup>)
<Result>: Boolean
  • True if the scheduled backup was modified,
  • False if an error occurred.
<Connection>: Character string or Connection variable
Connection for which a scheduled backup must be modified. This connection corresponds to:
<Scheduled backup>: hBackupDescription variable
Name of the hBackupDescription variable to modify.
Remarks

Necessary rights

To have the rights to modify a scheduled backup, you must:
  • be the owner of the scheduled backup.
  • be super-user.
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