Update
Learn a safe update flow: define inputs, load a record, apply an update, and secure it.
Introduction
Update steps change existing records, so the important question is not only how to edit a row, but how to target the right one safely. In this tour, you will connect the Update step to the broader CRUD workflow, review the fields that usually change, and understand the checks that keep edits predictable.
Update Records
Use the Database Update step to modify existing rows. Always include a clear condition (typically by primary key) to avoid changing unintended records.
Build the Update Flow
A typical update action is assembled in a small, deliberate sequence so you can validate each part before changing data.
Validate and Secure
Validate server-side and restrict updates to authorized users (Security Provider + session-based filtering). Prefer allow-lists (only update intended columns) over passing whole objects directly into an update step.
Next steps
Return to the Database Operations menu to continue with Queries, Insert, Update, Delete, or Paging.