ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / Managing databases / HFSQL / HFSQL Client/Server functions
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
Returns information about the specified group of users. This information is automatically assigned to user group management variables.
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")
...
// Find the characteristics of a group
Res is boolean
Res = HInfoGroup("MyConnection", "Test_Group")
IF Res = True THEN
Trace("Structure of the group updated")
Trace("Name of the group: " + HGroup.Name)
Trace("Description of the group: " + HGroup.Description)
Trace("Users of the group: " + HGroup.Users)
END
Syntax
<Result> = HInfoGroup(<Connection> , <Group>)
<Result>: Boolean
  • True if the information regarding the group was read,
  • False if an error occurred. HErrorInfo is used to identify the error.
Remark: An "Unknown group" error will be returned by HErrorInfo if the current user has no rights to see the users (hRightsSeeUser constant). These rights can be defined using HModifyServerRights.
<Connection>: Character string or Connection variable
Connection to use. This connection corresponds to:
<Group>: Character string
Name of group of users to manage.
Component: wd290hf.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 07/06/2023

Send a report | Local help