ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / Managing databases / HFSQL / HFSQL Client/Server functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Returns information about the specified group of users. This information is automatically assigned to user group management variables.
Example
// Describe the connection
MyConnection is Connection

// Open the connection
MyConnection.OpenConnection()
// Associate the data file with the connection
Customer.ChangeConnection(MyConnection)
...
// Find the characteristics of a group
Res is boolean
Res = MyConnection.InfoGroup("Test_Group")
IF Res = True THEN
	Trace("Structure of the group updated")
	Trace("Group name: " + HGroup.Name)
	Trace("Group description: " + HGroup.Description)
	Trace("Group users: " + HGroup.Users)
END
Syntax
<Result> = <Connection>.InfoGroup(<Group>)
<Result>: Boolean
  • True if the information regarding the group was read,
  • False if an error occurs. HErrorInfo is used to identify the error.
Note: An "Unknown group" error will be returned by function HErrorInfo if the current user does not have user view rights (constant hRightViewUser). These rights can be defined using <Connection variable>.ModifyServerRights.
<Connection>: Connection variable
Name of the Connection variable that describes the connection to use.
<Group>: Character string
Name of group of users to manage.
Component: wd300hf.dll
Minimum version required
  • Version 25
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 12/05/2024

Send a report | Local help