ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / Managing databases / HFSQL / HFSQL Client/Server functions
  • Rights required to add a user group
  • Rights management
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
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
MyConnection is Connection

// Describe the connection
MyConnection.User = "USER"
MyConnection.Password = "PASSWORD"
MyConnection.Server = "MYSERVER" 
MyConnection.Database = "Database"
MyConnection.Provider = hAccessHFClientServer
MyConnection.Access = hORead


// Open the connection
MyConnection.OpenConnection()
// Associate the data file with the connection
Customer.ChangeConnection(MyConnection)
// Characteristics of the new group
HGroup.Name = "ADMIN2"
HGroup.Description = "Database administrators"
HGroup.Users = "Flo" + CR + "Julia"
// Add the group
IF MyConnection.AddGroup() = True THEN
	Info("Group added")
END
Syntax
<Result> = <Connection>.AddGroup()
<Result>: Boolean
  • True if the group has been added,
  • False if an error occurs. HError is used to identify the error.
<Connection>: Connection variable
Name of the Connection variable that describes the connection to which the group of users must be added.
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).

Rights management

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: wd300hf.dll
Minimum version required
  • Version 25
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 12/04/2024

Send a report | Local help