inline database actions

inline performs database searches, SQL statements, adds, updates, deletes, and result block execution.

Target guide

Database work in LaiRu centers on inline. Generated actions use database, table/layout, keys, sorts, and action parameters. SQL inlines pass statement text with -sql.

Examples

Working pattern

1inline(-database='contacts', -table='people', -findAll) => {2    records => { field('first_name') }3}
Use this as a focused starting point and adapt it in context.

Related