VOOZH about

URL: https://www.cdata.com/kb/tech/xml-odbc-filemaker-scripting.rst

⇱ Connect to XML Data Using the Script Function in Claris FileMaker Pro


Connect to XML Data Using the Script Function in Claris FileMaker Pro

πŸ‘ Dibyendu Datta
Dibyendu Datta
Lead Technology Evangelist
Use the CData ODBC Driver for XML and the Script function in FileMaker Pro to connect to XML and work with XML data in your FileMaker application.

Claris FileMaker is a low-code database application development tool that enables users to create custom apps for managing and organizing data. It combines a powerful relational database engine with an intuitive interface, allowing both technical and non-technical users to design and deploy applications across desktop, web, and mobile platforms.

In this article, we'll explore how to use the CData ODBC Driver for XML and FileMaker scripting to connect to XML data.

Create an ODBC Data Source for XML

If you have not already, first specify connection properties in an ODBC DSN (data source name). This is the last step of the driver installation. You can use the Microsoft ODBC Data Source Administrator to create and configure ODBC DSNs.

Connecting to Local or Cloud-Stored (Box, Google Drive, Amazon S3, SharePoint) XML Files

CData Drivers let you work with XML files stored locally and stored in cloud storage services like Box, Amazon S3, Google Drive, or SharePoint, right where they are.

Setting connection properties for local files

Set the URI property to local folder path.

Setting connection properties for files stored in Amazon S3

To connect to XML file(s) within Amazon S3, set the URI property to the URI of the Bucket and Folder where the intended XML files exist. In addition, at least set these properties:

  • AWSAccessKey: AWS Access Key (username)
  • AWSSecretKey: AWS Secret Key

Setting connection properties for files stored in Box

To connect to XML file(s) within Box, set the URI property to the URI of the folder that includes the intended XML file(s). Use the OAuth authentication method to connect to Box.

Dropbox

To connect to XML file(s) within Dropbox, set the URI proprerty to the URI of the folder that includes the intended XML file(s). Use the OAuth authentication method to connect to Dropbox. Either User Account or Service Account can be used to authenticate.

SharePoint Online (SOAP)

To connect to XML file(s) within SharePoint with SOAP Schema, set the URI proprerty to the URI of the document library that includes the intended XML file. Set User, Password, and StorageBaseURL.

SharePoint Online REST

To connect to XML file(s) within SharePoint with REST Schema, set the URI proprerty to the URI of the document library that includes the intended XML file. StorageBaseURL is optional. If not set, the driver will use the root drive. OAuth is used to authenticate.

Google Drive

To connect to XML file(s) within Google Drive, set the URI property to the URI of the folder that includes the intended XML file(s). Use the OAuth authentication method to connect and set InitiateOAuth to GETANDREFRESH.

The property is the controlling property over how your data is represented into tables and toggles the following basic configurations.

  • Document (default): Model a top-level, document view of your XML data. The data provider returns nested elements as aggregates of data.
  • FlattenedDocuments: Implicitly join nested documents and their parents into a single table.
  • Relational: Return individual, related tables from hierarchical data. The tables contain a primary key and a foreign key that links to the parent document.

See the Modeling XML Data chapter for more information on configuring the relational representation. You will also find the sample data used in the following examples. The data includes entries for people, the cars they own, and various maintenance services performed on those cars.

When you configure the DSN, you may also want to set the Max Rows connection property. This will limit the number of rows returned, which is especially helpful for improving performance when designing reports and visualizations.

Connect and Sync XML data with FileMaker Using Scripts

In this section, we walk through the steps to connect live XML data to FileMaker using the CData ODBC Driver for XML and the Script function. During the initial import, FileMaker brings in all data from the external data source. From the second import onward, it updates only the data that has changed in the external source (a differential update). You can also replace the data in the current record order and schedule these differential updates for automated syncing.

You can download and install the latest version of FileMaker Pro for your Mac/Windows/Linux systems from this link.

Connect and sync XML data with FileMaker using scripts

Scripting in FileMaker automates complex tasks and workflows by running a sequence of actions with a single command. By using scripting to integrate with XML, you can automatically connect to, import, update, and replace XML data within your FileMaker applications, streamlining data management and improving efficiency.

First-time importing and adding XML data using script

In this section, we'll use scripts to import XML data into FileMaker by following these steps:

  1. Open FileMaker Pro. Navigate to Create from the left panel and select Blank > Create.
  2. πŸ‘ Create a new application in FileMaker
  3. Enter a filename of your choice and click Save.
  4. In the Manage Database window, go to the Tables tab and create or rename the table where you want to display the XML data.
  5. πŸ‘ Create or rename existing the table
  6. In the Fields tab, create and add the fields you want to use in the table.
  7. πŸ‘ Add the necessary fields.
  8. In the Relationships tab, add table relationships if there are multiple tables, then click OK.
  9. πŸ‘ Add the table relationships.
  10. To reopen and modify the table structure, go to File > Manage > Database.
  11. Navigate to Scripts > Script Workspace.
  12. πŸ‘ Open the Script Workspace.
  13. Select New Script to open a new script workspace.
  14. From the Steps panel on the right, select Records > Import Records > Insert into Script.
  15. πŸ‘ Insert into script from import records.
  16. In the Specify Data Source dropdown, choose ODBC Data. πŸ‘ Click ODBC Data from Specify data source.
  17. Select CData XML Sys from the Select ODBC Data Source window, and click Continue. Enter your XML credentials and click OK.
  18. πŸ‘ Select the data source driver.
    πŸ‘ Enter the data source credentials to aunthenticate.
  19. In the Specify ODBC SQL Query dialog, enter the SQL query in the SQL text editor to import the desired XML data.
  20. πŸ‘ Specify the SQL query.
  21. Alternatively, select Query Builder to open the SQL Query Builder window. Choose the target table from the Tables section and relevant columns from the Columns section. Click Insert into SQL Query after each selection to auto-generate the query. You can also manually edit the query using WHERE and ORDER BY clauses or the designated tabs. Click OK to finalize the query.
  22. πŸ‘ Specify the columns in the table to auto-generate the SQL Query.
  23. Click OK.
  24. In the Specify import order option, click Specify and enter the XML credentials.
  25. πŸ‘ Click Specify.
  26. In the Specify Import Order window, define the import order for the target fields you added earlier. Select Add between the source and target fields to insert the XML data as new records in the table. Click Import.
  27. πŸ‘ Select
  28. The script now appears in the workspace. Click Run to execute the script and process the import.
  29. πŸ‘ Click Run to execute the script.
  30. FileMaker imports the XML data as a table.
  31. πŸ‘ The XML data gets loaded.

Update or Replace Imported XML data Using a Script

After importing the XML data into FileMaker, use scripts to update or replace any changes made in XML by following this process:

  1. Go back to the Script Workspace by following the steps mentioned in the earlier section.
  2. Select the existing script, click the settings button, choose Specify under Specify Import Order, and re-enter the XML credentials to authenticate.
  3. πŸ‘ Click Specify again from the previous script.
  4. In the Specify Import Order window, choose Update between source and target to update the imported XML data. This updates the target's found set with XML data values from selected fields when the match fields have the same values. You must define at least one match field in the mapping and select the checkbox Add remaining data as new records. Click Import.
  5. πŸ‘ Select
    πŸ‘ Match at least one field in the mappings.
  6. Alternatively, choose the Replace option instead of Update, based on your use case. This replaces the selected fields in the target's found set with XML data in the current record order. Click Import.
  7. πŸ‘ Select
  8. FileMaker adds the script to the workspace. Click Run to execute the script and process the import query.
  9. FileMaker imports the updated or replaced XML data as a table.

Get Started Today

Download a free 30-day trial of CData ODBC Driver for XML to integrate XML data into Claris FileMaker and work with XML data in your FileMaker applications.

Reach out to our Support Team if you have any questions.

Ready to get started?

Download a free trial of the XML ODBC Driver to get started:

 Download Now

Learn more:

πŸ‘ XML Documents Icon
XML ODBC Driver

The XML ODBC Driver is a powerful tool that allows you to connect with live XML data stores, directly from any applications that support ODBC connectivity.

Access XML data like you would any standard database - read, write, and update etc. through a standard ODBC Driver interface.