field

Returns a field value from the current record.

Target function

Signature

1field(name::string, ...)

Returns a field value from the current record.

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

Parameters

name
Required value of type string. Supply name positionally unless the signature shows a keyword form.
...
Additional values may be supplied after the earlier arguments.

Examples

Basic call

1field('title')
The example shows the call shape; use bind values and checked errors for visitor-supplied data.