ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
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
Deletes (from the server) a group of users associated with a connection.
Example
// Description de la connexion
HDescribeConnection("MaConnexion", "Julie", "MotDePasse", "MonServeurHF", ...
		"MaBaseDeDonnées", hAccessHFClientServer, hORead)
// Ouverture de la connexion
HOpenConnection("MaConnexion")
// Association du fichier de données à la connexion
HChangeConnection(Client, "MaConnexion")
...
IF HDeleteGroup("MaConnexion", "Util1") = True THEN
	Info("Groupe Util1 supprimé")
END
Syntax
<Result> = HDeleteGroup(<Connection> , <Group>)
<Result>: Boolean
  • True if the group has been deleted,
  • False if an error occurs. HErrorInfo is used to identify the error.
Note: An "Unknown Group" error will be returned by the function HErrorInfo if the current user does not have the right to view users (constant hDroitVisualisationUtilisateur) and if they request the deletion of another group.
<Connection>: Character string or Connection variable
Connection for which a group must be deleted. This connection corresponds to:
<Group>: Character string
Name of group to delete.
Component: wd300hf.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/12/2025

Send a report | Local help