rows

Iterates rows in an inline result.

Target function

Signature

1rows(-inlineName::string= ?)

Iterates rows in an inline result.

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

Parameters

-inlineName
Optional value of type string. Supply -inlineName by keyword, keeping the leading hyphen in the call.

Examples

Basic call

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