ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / Managing databases / HFSQL / HFSQL Client/Server functions
  • Rights required to add a user group
  • Managing 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
Adds a group of users. All the group characteristics must be specified in the variables for group management.
Example
// Describe the connection
HDescribeConnection("MyConnection", "Julia", "Password", "MyHFServer", ...
"MyDatabase", hAccessHFClientServer, hORead)
// Open the connection
HOpenConnection("MyConnection")
// Associate the data file with the connection
HChangeConnection(Customer, "MyConnection")
// Characteristics of the new group
HGroup.Name = "ADMIN2"
HGroup.Description = "Database administrators"
HGroup.Users = "Flo" + CR + "Julia"
// Add the group
IF HAddGroup("MyConnection") = True THEN
Info("Group added")
END
Syntax
<Result> = HAddGroup(<Connection>)
<Result>: Boolean
  • True if the group was added,
  • False if an error occurred. HError is used to identify the error.
<Connection>: Character string or Connection variable
Connection for which the user group must be added. This connection corresponds to:
Remarks

Rights required to add a user group

To add a user group, you must have the following rights:
  • Rights to manage the users (hRightsManageUser constant).
  • Rights to see the users (hRightsSeeUser constant).
These constants are used in HInfoServerRights and HModifyServerRights.

Managing rights

No rights are granted to a new group.
The following function are used to grant rights to a group:
For more details, see Managing the rights in HFSQL Client/Server.
Component: wd290hf.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help