Topics
All
MacOS
(Only)
Windows
(Only)
Linux
(Only, Not)
iOS
(Only, Not)
Components
Crossplatform Mac & Win
Server
Client
Old
Deprecated
Guides
Examples
Videos
New in version:
9.3
9.4
9.5
10.0
10.1
10.2
10.3
10.4
10.5
10.6
Statistic
FMM
Blog
Dictionary.AddSQL
Adds values to a dictionary via SQL.
| Component | Version | macOS | Windows | Linux | Server | FileMaker iOS SDK |
| Dictionary | 5.1 | Yes | Yes | Yes | Yes | Yes |
Parameters
| Parameter | Description | Example | Flags |
|---|---|---|---|
| DictionaryRef | The reference number to the dictionary as returned by Dictionary.Create function. | $dic | |
| SQL Statement | SQL Statement as a Text string | ||
| FileName | The target database name. Can be empty to not limit query to one database. | "" | |
| Params | Optional, pass here parameters. One parameter to this function for each parameter you want to pass to the SQL statement. | 123 | Optional |
Result
Returns number of items added or error.
Description
Adds values to a dictionary via SQL.From the result set, the first field is used as key and second field if exists as value.
Returns error in case of SQL error with error message.
You don't need to use ORDER BY in SQL as the order in a dictionary is defined by storage which for you means unordered.
This function is currently only supported for FileMaker 11 and newer. If you need it for older versions, please contact us.
Examples
Test function:
# create dictionary
$dic = MBS("Dictionary.Create")
# add keys and values via SQL
MBS("Dictionary.AddSQL"; $dic; "SELECT TextField, NumberField FROM \"Test Table\"")
# query keys
$keys = MBS("Dictionary.Keys"; $dic)
# and values
$values = MBS("Dictionary.ValueForKey"; $dic; "Hello")
# free
MBS("Dictionary.Release"; $dic )
Add zip codes for three countries from 3 databases to dictionary:
MBS( "Dictionary.AddSQL"; $dic; "SELECT ('DE' + \"_5_stellige_PLZ\"),Ort FROM \"PLZ Deutschland Konvertiert\" "; "PLZ Deutschland" ) +
MBS( "Dictionary.AddSQL"; $dic; "SELECT ('AT' + \"_4_stellige_PLZ\"),Ort FROM \"PLZ Österreich Konvertiert\" "; "PLZ Österreich" ) +
MBS( "Dictionary.AddSQL"; $dic; "SELECT ('CH' + \"_4_stellige_PLZ\"),Ort FROM \"PLZ Schweiz Konvertiert\" "; "PLZ Schweiz" )
See also
- Dictionary.AddSQLRecord
- Dictionary.AddSQLRecords
- Dictionary.Create
- Dictionary.Keys
- Dictionary.Release
- Dictionary.ToJSON
- Dictionary.ValueForKey
Blog Entries
- Data structures in FileMaker with MBS Plugins
- MBS FileMaker Plugin, version 5.2pr9
- MBS FileMaker Plugin, version 5.1pr1
Release notes
- Version 7.4
- Added Dictionary.AddSQLRecord(s) function.
Created 12nd March 2015, last changed 13th February 2017
DialogModifications.Uninstall - Dictionary.AddSQLRecord
Feedback: Report problem or ask question.
Links
MBS Xojo blog