Ready to get started?

Download a free trial of the Airtable Driver to get started:

 Download Now

Learn more:

Airtable Icon Airtable JDBC Driver

Rapidly create and deploy powerful Java applications that integrate with Airtable.

How to connect to Airtable Data from IntelliJ



Integrate connectivity to Airtable data with wizards in IntelliJ.

The CData JDBC Driver for Airtable enables you to access Airtable as a JDBC data source, providing integration with rapid development tools in IDEs. This article shows how to use the data source configuration wizard to connect to Airtable data in IntelliJ.

Create a JBDC Data Source for Airtable

Follow the steps below to add the driver JAR and define connection properties required to connect to Airtable data.

  1. In the Data Sources window, right-click and then click Add Data Source -> DB Data Source.
  2. In the Data Source Properties dialog that appears, the following properties are required:

    • JDBC Driver Files: Click the button next to this menu to add the JDBC Driver file cdata.jdbc.airtable.jar, located in the installation directory.
    • JDBC Driver Class: In this menu, select cdata.jdbc.airtable.AirtableDriver from the list.
    • Database URL: Enter the connection URL in the JDBC URL property. The URL must start with jdbc:airtable: and includes connection properties separated with semicolons.

      APIKey, BaseId and TableNames parameters are required to connect to Airtable. ViewNames is an optional parameter where views of the tables may be specified.

      • APIKey : API Key of your account. To obtain this value, after logging in go to Account. In API section click Generate API key.
      • BaseId : Id of your base. To obtain this value, it is in the same section as the APIKey. Click on Airtable API, or navigate to https://airtable.com/api and select a base. In the introduction section you can find "The ID of this base is appxxN2ftedc0nEG7."
      • TableNames : A comma separated list of table names for the selected base. These are the same names of tables as found in the UI.
      • ViewNames : A comma separated list of views in the format of (table.view) names. These are the same names of the views as found in the UI.

      Built-in Connection String Designer

      For assistance in constructing the JDBC URL, use the connection string designer built into the Airtable JDBC Driver. Either double-click the JAR file or execute the jar file from the command-line.

      java -jar cdata.jdbc.airtable.jar

      Fill in the connection properties and copy the connection string to the clipboard.

      A typical JDBC URL is the following:

      jdbc:airtable:APIKey=keymz3adb53RqsU;BaseId=appxxN2fe34r3rjdG7;TableNames=Table1,...;ViewNames=Table1.View1,...;

Edit and Save Airtable Data

To discover schema information, right-click the data source you just created and click Refresh Tables. To query a table, right-click it and then click Open Tables Editor. You can also modify records in the Table Editor.