Skip to content

DELETE_USERS ​

DELETE_USERS deletes one or more ADOxx users.

Syntax ​

leo-grammar
CC "UserMgt" DELETE_USERS users:strValue [ sep:strValue ]

# --> RESULT ecode:intValue
CC "UserMgt" DELETE_USERS users:strValue [ sep:strValue ]

# --> RESULT ecode:intValue

Parameters ​

  • users (strValue) - specifies the names of one or more users to be deleted. The users are specified as a string containing user names, separated by the character passed with sep. The default value for sep is ";" (semicolon). However, it is recommended to use sep:"\t" (TAB).
  • sep (strValue) -

Returns ​

  • ecode (intValue) - Contains the error code or is 0 in case of success.

Details ​

This command is only available within the ADOxx Development Toolkit.

See Also ​

Examples ​

leo-grammar
CC "UserMgt" DELETE_USERS users:"Peter\tPaul\tMary" sep:"\t"
IF (ecode) {
    CC "AdoScript" ERRORBOX "Users could not be deleted!"
}
CC "UserMgt" DELETE_USERS users:"Peter\tPaul\tMary" sep:"\t"
IF (ecode) {
    CC "AdoScript" ERRORBOX "Users could not be deleted!"
}

Versions and Changes ​

Available since ADOxx 1.3