1 connection.getUsers
Returns a cursor with the physical users that defined in the connection database or in the supplied database.
<connection.getUsers name='name'/>
Attributes | |||||
---|---|---|---|---|---|
Name | Type | Required | Default | Description | |
Aname | string | Name of the database. If not supplied, it is used the connection database. |
Returns | |
---|---|
Type | Description |
resultSet | Return a resultSet. |
Example
Shows the cursor with the physical users of connection defined in the connection database where the script is executed.
Copy
<xsql-script name='cursor_physical_users'> <body> <println> <connection.getUsers /> </println> </body> </xsql-script>