Prerequisites
Before proceeding, ensure the following prerequisites are met:- Install MindsDB locally via Docker or use MindsDB Cloud.
- To connect Airtable to MindsDB, install the required dependencies following this instruction.
- Install or ensure access to Airtable.
Implementation
This handler is implemented usingduckdb
, a library that allows SQL queries to be executed on pandas
DataFrames.
In essence, when querying a particular table, the entire table is first pulled into a pandas
DataFrame using the Airtable API. Once this is done, SQL queries can be run on the DataFrame using duckdb
.
The required arguments to establish a connection are as follows:
base_id
is the Airtable base ID.table_name
is the Airtable table name.api_key
is the API key for the Airtable API.
Usage
In order to make use of this handler and connect to the Airtable database in MindsDB, the following syntax can be used:At the moment, only the
SELECT
statement is allowed to be executed through duckdb
. This, however, has no restriction on running machine learning algorithms against your data in Airtable using the CREATE PREDICTOR
statement.