Components | All | New | MacOS | Windows | Linux | iOS | ||||
Examples | Mac & Win | Server | Client | Guides | Statistic | FMM | Blog | Deprecated | Old |
Matrix.InsertRecords
Inserts records in FileMaker database from records in memory.
Component | Version | macOS | Windows | Linux | Server | iOS SDK |
Matrix | 9.2 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes |
MBS( "Matrix.InsertRecords"; MatrixRef; InsertFileName; InsertTableName; FieldNames { ; StartRow; EndRow } ) More
Parameters
Parameter | Description | Example | Flags |
---|---|---|---|
MatrixRef | The matrix reference number. | $matrix | |
InsertFileName | The file name of where the insert table is inside. Can be empty to look for the table in all files. | Get(FileName) | |
InsertTableName | The name of the table to insert record into. | "Assets" | |
FieldNames | A list of field names for the insert. Empty entries in the list are ignored. |
"Model" | |
StartRow | The index of the start row in the current recordset. First row is 0. |
0 | Optional |
EndRow | The index of the end row in the current recordset. First row is 0. Last Row would be Matrix.Height-1. |
0 | Optional |
Result
Returns OK or error.
Description
Inserts records in FileMaker database from records in memory.This function allows to easily copy a lot of records from a query in FileMaker database into a FileMaker table.
Please provide field names in FileMaker. The order has to match those in the record set.
Due to passing in new field names, you can even rearrange values from one column to other while copying. In the SQL you can use functions for sums or join data from several tables together to fill a new table.
Use FM.ExecuteSQL.LastErrorMessage and FM.ExecuteSQL.LastError to see error message.
Reports an error if field name list doesn't match column count of the query result.
Function will fail if data types in source and dest fields do not match for assignment. e.g. date and time fields will not work, only timestamp fields.
For insert from SQL Connection into FileMaker database, please use SQL.InsertRecords.
See also
- FM.ExecuteSQL
- FM.ExecuteSQL.LastError
- FM.ExecuteSQL.LastErrorMessage
- Matrix.Height
- Matrix.InsertRecordsToSQL
- SQL.InsertRecords
- XL.Sheet.ReadCellsAsMatrix
Release notes
- Version 13.2
- Changed field quoting for FM.SQL.InsertRecordsToSQL and Matrix.InsertRecordsToSQL to handle non ANSI quotes for MySQL/MariaDB.
- Version 13.1
- Fixed FM.SQL.InsertRecords, FM.SQL.InsertRecordsToSQL, Matrix.InsertRecordsToSQL and Matrix.InsertRecords to quote the table name for the SQL used internally.
- Version 11.0
- Enhanced Matrix.InsertRecords to detect field data type and pass numbers and date/time/timestamp to FileMaker.
Blog Entries
- MBS FileMaker Plugin, version 13.1pr1
- CSV in FileMaker with MBS FileMaker Plugin
- MBS FileMaker Plugin, version 10.6pr1
- Import CSV with Matrix functions
This function checks for a license.
Created 8th April 2019, last changed 7th April 2022
Matrix.IndexOfFirstValueMatching - Matrix.InsertRecordsToSQL