resultSet

Selects a result set.

Target function

Signature

1resultSet(num::integer= ?, -inlineName= ?)

Selects a result set.

resultSet is a global callable that can be used wherever an expression is valid. resultSet is part of datasource access. Prefer bind values for visitor input, inspect errors during writes, and keep display escaping separate from SQL handling.

Parameters

num
Optional value of type integer. Supply num positionally unless the signature shows a keyword form.
-inlineName
Optional value. Supply -inlineName by keyword, keeping the leading hyphen in the call.

Examples

Basic call

1resultSet(1) => { records => { field('name') } }
The example shows the call shape; use bind values and checked errors for visitor-supplied data.