-
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 Go program
main.go:- Change the connection arguments in the
NewDatabase()call: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 Go program:
go mod tidy go run main.go