Components | All | New | MacOS | Windows | Linux | iOS | ||||
Examples | Mac & Win | Server | Client | Guides | Statistic | FMM | Blog | Deprecated | Old |
FM.InsertOrUpdateRecord2
Inserts or updates a record in a table in one line.
Component | Version | macOS | Windows | Linux | Server | iOS SDK |
FM FMSQL | 6.1 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes |
MBS( "FM.InsertOrUpdateRecord2"; FileName; TableName; IDField1; IDValue1; IDField2; IDValue2; 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. | 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" |
IDField1 | The name of the field which provides an unique ID for each record, so we can identify the field. Can be ID of field, so we lookup name by ID. Can be result of GetFieldName() function as we remove table name automatically. |
"ID1" |
IDValue1 | The value for the ID field to identify the record. Data type of parameter must match the data type of the field. |
$RecordID |
IDField2 | The name of the field which provides an unique ID for each record, so we can identify the field. Can be ID of field, so we lookup name by ID. Can be result of GetFieldName() function as we remove table name automatically. |
"ID2" |
IDValue2 | The value for the ID field to identify the record. Data type of parameter must match the data type of the field. |
$RelatedRecordID |
FieldName... | A field name to set. | "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
Inserts or updates a record in a table in one line.Same as FM.InsertOrUpdateRecord, but with 2 ID fields to locate record.
If the insert fails due to duplicate ID, we will update the record values.
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 set in the new record.
This function combines FM.InsertRecord and FM.UpdateRecord. If the ID is already used, we update, else we insert a new record.
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.
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
Insert or update:
MBS( "FM.InsertOrUpdateRecord2";
""; "Assets"; /* file and table name */
"Asset ID Match Field"; 2; /* first ID field and value */
"Internal ID"; "2"; /* second ID field and value */
"Model"; "Just a test"; /* first field and value */
"Category"; "BestItems2" ) /* second field and value */
See also
- FM.ExecuteSQL
- FM.ExecuteSQL.LastSQL
- FM.InsertOrUpdateRecord
- FM.InsertOrUpdateRecord3
- FM.InsertOrUpdateRecord4
- FM.InsertOrUpdateRecord5
- FM.InsertOrUpdateRecordQuery
- FM.InsertRecord
- FM.UpdateRecord
- SQL.InsertOrUpdateRecords
Release notes
- Version 8.5
- Added check to FM.InsertOrUpdateRecord2 to detect duplicate fields passed.
Blog Entries
- Insert or update with JSON
- New in MBS FileMaker Plugin 11.2
- MBS FileMaker Plugin, version 8.5pr4
- MBS FileMaker Plugin, version 6.1pr3
FileMaker Magazin
This function is free to use.
Created 19th February 2016, last changed 5th June 2021