ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / Managing databases / HFSQL / HFSQL Client/Server functions
  • Use conditions
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
<Connection variable>.DuplicateDatabase (Function)
In french: <Variable Connexion>.DupliqueBaseDeDonnées
HFSQL Client/ServerAvailable only with this kind of connection
Duplicates the database associated with a connection on an HFSQL server. The tables, the rights, the procedures and the triggers are duplicated.
Example
// Describe the connection
MyConnection is Connection
 
MyConnection.DuplicateDatabase("MyCopiedDatabase")
Syntax
<Result> = <Connection>.DuplicateDatabase(<Duplicated database> [, <Progress Bar>])
<Result>: Boolean
  • True if the database was duplicated.
  • False if an error occurred. HError is used to identify the error.
<Connection>: Connection variable
Name of the Connection variable that describes the connection associated with the database to duplicate.
<Duplicated database>: Character string
Name of the new database to create (copy of the current database).
Remarks:
  • The new database to create must not exist.
  • A WLanguage error occurs if the new database already exists.
<Progress Bar>: Optional window or control name
  • Name of the window in which the progress bar will be displayed.
  • Name of Progress Bar control used to display the progress.
Remarks

Use conditions

To duplicate a database, the user must have:
  • the rights to perform backups.
  • the rights to create databases.
Component: wd290hf.dll
Minimum version required
  • Version 25
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/21/2023

Send a report | Local help