updateRow
updateRow is a common operation in data manipulation libraries and APIs used to modify the contents of a single row in a tabular data structure. The function typically targets a row by an identifier, such as a numeric index or a unique key, and applies new values to one or more fields. Most implementations take two main inputs: the row identifier and a map or object of field-value pairs to set. Depending on the library, updateRow may replace the entire row or update only the specified fields, leaving others unchanged.
In memory and persistence behavior vary by context. Some implementations update data in memory and require
Contexts and examples. In relational databases, similar results are achieved with an UPDATE statement that targets
See also: update, insertRow, deleteRow, and related data-manipulation operations.