Components | All | New | MacOS | Windows | Linux | iOS | ||||
Examples | Mac & Win | Server | Client | Guides | Statistic | FMM | Blog | Deprecated | Old |
FM.UpdateRecord
Update an existing record in a table in one line.
Component | Version | macOS | Windows | Linux | Server | iOS SDK |
FM FMSQL | 6.0 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes |
MBS( "FM.UpdateRecord"; FileName; TableName; IDField; IDValue; FieldName...; FieldValue... ) More
Parameters
Parameter | Description | Example |
---|---|---|
FileName | The file name of where the table is inside. Can be empty to look for the table in all files. Using a table in another database file may require you adding the other file as an external data source and adding the external table to your relationship graph to grant access. |
Get(FileName) |
TableName | The name of the table to insert record into. Can be ID of table, so we lookup name by ID. Can be result of GetFieldName() function as we remove field name automatically. |
"Assets" |
IDField | The name of the field which provides an unique ID for each record, so we can identify the field. Can be ROWID for the record ID. Can be ID of field, so we lookup name by ID. Can be result of GetFieldName() function as we remove table name automatically. |
"ID" |
IDValue | The value for the ID field to identify the record. Data type of parameter must match the data type of the field. |
$RecordID |
FieldName... | A field name to set. Can be ID of field, so we lookup name by ID. Can be result of GetFieldName() function as we remove table name automatically. |
"Model" |
FieldValue... | A field value to use for setting the field in the parameter before. Data type of parameter must match the data type of the field. |
"Test" |
Result
Returns OK or error.
Description
Update an existing record in a table in one line.You pass to this function table name (and optional filename).
To identify the record you pass the name of the ID field and the value for the record. The ID field must be unique.
Then you pass one pair of field name and value for each field you like to like to change in the record.
Please note that FM.UpdateRecord and FM.UpdateRecords are nearly identical. Just FM.UpdateRecord provides the check to make sure only one record matches while FM.UpdateRecords allows several records to be updated. So with FM.UpdateRecords you can easily erase a lot of data if you pass wrong ID!
With plugin version 7.2 or later, you can specify fields and table via IDs and the plugin will lookup them for you at runtime. Table IDs and table names must be unique across all open files for this to work correctly.
With plugin version 8.4 or newer, you can use GetFieldName() function to query field names and the plugin removes the table prefix with :: in the field name before passing it to SQL engine.
You can use FM.ExecuteSQL.LastSQL function to see later what SQL was created and run.
The SQL functions in FileMaker do not trigger OnWindowsTransaction script trigger.
If the record is locked, you get an error like this: [MBS] ERROR: (301): Record is locked by another user.
Your script may then wait and try again later.
Does not take part in transactions in FileMaker. Changes are made directly to the database, so you can't revert them later with Revert Transaction script step.
This function takes variable number of parameters. Pass as much parameters as needed separated by the semicolon in FileMaker.
Please repeat FieldName and FieldValue parameters as often as you need.
Examples
Update a record:
MBS( "FM.UpdateRecord";
""; "Asset Management"; /* file and table name */
"Asset ID"; "1"; /* ID field and value */
"Information"; "Just a test"; /* first field and value */
"Category"; "BestItems" ) /* second field and value */
Update a record:
MBS( "FM.UpdateRecord"; Get(FileName); "Kontakte"; "Vorname"; "Joe"; "Firma"; "Test" )
Update a repeating field:
Set Variable [ $r ; Value: MBS( "FM.UpdateRecord"; ""; "Contacts"; "RowID"; 1; "repeating[5]"; "Hello" ) ]
Show Custom Dialog [ Get ( RecordID ) & ": " & Contacts::repeating[5] ]
See also
- FM.DeleteRecord
- FM.InsertRecord
- FM.UpdateRecord2
- FM.UpdateRecord3
- FM.UpdateRecord4
- FM.UpdateRecord5
- FM.UpdateRecords
- FM.UpdateRecords2
- FM.UpdateRecords4
- FM.UpdateRecords5
Release notes
- Version 14.5
- Added FM.UpdateRecord4, FM.UpdateRecord5, FM.UpdateRecords4 and FM.UpdateRecords5 functions.
- Version 12.4
- Fixed a problem with FM.InsertRecord and FM.UpdateRecord functions. They now ignore empty field names.
- Version 10.1
- Changed FM.InsertRecord, FM.CompareTables, FM.DeleteRecord, FM.DeleteRecords, FM.InsertOrUpdateRecord and FM.UpdateRecord to take table name from first field name if table name is empty.
- Version 9.3
- Changed field quoting for FM.UpdateRecord and others to not quote ROWID as field name.
- Version 8.5
- Changed FM.UpdateRecords and related to better return error if parameter count is too small.
- Version 8.0
Example Databases
Blog Entries
- Insert or update with JSON
- New records without layout change in FileMaker
- MBS FileMaker Plugin, version 12.4pr4
- MBS @ FMTraining.TV
- MBS FileMaker Plugin, version 10.1pr1
- MBS FileMaker Plugin, version 9.3pr1
- MBS FileMaker Plugin 6.0 for OS X/Windows
- MBS FileMaker Plugin, version 5.5pr1
FileMaker Magazin
This function checks for a license.
Created 5th December 2015, last changed 14th October 2024