AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Administrar bases de datos / HFSQL / Funciones HFSQL Client/Server
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
Deletes (from the server) a group of users associated with a connection.
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")
...
IF HDeleteGroup("MyConnection", "User1") = True THEN
Info("User1 group deleted")
END
Syntax
<Result> = HDeleteGroup(<Connection> , <Group>)
<Result>: Boolean
  • True if the group was deleted,
  • False if an error occurred. HErrorInfo is used to identify the error.
Remark: HErrorInfo will return an "Unknown group" error if the current user has no rights to see the users (hRightsSeeUser constant) and wants to delete 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: wd290hf.dll
Versión mínima requerida
  • Versión 9
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 26/05/2022

Señalar un error o enviar una sugerencia | Ayuda local