ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / Managing databases / HFSQL / HFSQL Client/Server functions
  • 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 = MyDatabaseConnection.ListScheduledBackup()
hBck is hBackupDescription
 
FOR EACH hBck OF arrBck
IF hBck.LimitNumberBackups = 3 THEN
hBck.LimitNumberBackups = 5
MyDatabaseConnection.ModifyScheduledBackup(hBck)
END
END
Syntax
<Result> = <Connection>.ModifyScheduledBackup(<Scheduled backup>)
<Result>: Boolean
  • True if the scheduled backup was modified,
  • False if an error occurred.
<Connection>: Connection variable
Name of the Connection variable that describes the connection for which a scheduled backup must be modified.
<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
Minimum version required
  • Version 25
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/07/2023

Send a report | Local help