Content Freeze
As of July 25th, 2023, there is a content freeze on this page.
This method updates the currently positioned record.
Parameters
- Record format name (optional) - A String value specifying the record format name.
- Data structure (optional) - A Profound.js data structure reference. If specified, the record will be populated with the values from the data structure. If the data structure is not qualified, you must wrap the parameter with the pjs.ds() API.
Exception Handling
An Error instance will be thrown with the following properties:
- message - The message text.
- error - The message id.
- help - The message help text.
Examples
Update record
pjs.defineTable("myfile", { keyed: true, read: true, update: true }); myfile.getRecord(100); if (myfile.found()) { field1 = "New value"; myfile.update(); }
RPG Equivalent
UPDATE
Requirements
This API requires the Profound.js Connector module.