-
Create a Databricks account or be able to log in to an existing one.
-
Log into Databricks and create or locate an existing SQL warehouse.
-
Open the "Connection details" tab and record the server hostname and HTTP path. See the Databricks documentation describing how to get these connection details.
-
Install the Databricks ADBC driver:
dbc install databricks
-
Customize the
mainmethod inExample.java:- Change the connection arguments in the
params.put()calls:uriis the URI for your Databricks instance. The program includes several authentication options. See the Databricks ADBC driver documentation for details.
- Change the SQL SELECT statement in
stmt.setSqlQuery(), or keep it as is.- Specify the catalog and schema by fully qualifying the table name as
catalog.schema.table.
- Specify the catalog and schema by fully qualifying the table name as
- Change the connection arguments in the
-
Run the Java program:
mvn compile exec:exec