InterSystems FAQ rubric
Use the ErrorList query of the SYS.ApplicationError class.
- Note 1: Runs in the %SYS namespace.
- Note 2: This is a non-stored utility, so we use the %ResultSet class rather than %SQL.Statement.
An example of command execution is as follows.
USER>set$namespaceThe following shows how to get column values of a SELECT while navigating through rows.
To move to a row, use the Next() method (which returns 1 if the row exists).
To get a column, use Get("column name").

.png)


