databricks-sql-go icon indicating copy to clipboard operation
databricks-sql-go copied to clipboard

Golang database/sql driver for Databricks SQL.

Results 63 databricks-sql-go issues
Sort by recently updated
recently updated
newest added

Coming from other Go database drivers the lack of query argument support was a surprise. This commit ports approximately what the Python Databricks library does in order to handle query...

Fixes: https://github.com/databricks/databricks-sql-go/issues/201 That way we can programmatically add arguments to the `NewConnector` function instead of copy/pasting all of them across conditionals.

Can we update the readme how to use client ID and secret as part of the DSN as well and user-agent. Thanks!

We recently started using the `GET` staging operation after using `PUT` in production for some time. I thought it might be useful to have a snippet with the expected syntax...

I'm looking a way other than raw queries, also using prepared statements I'm able to insert only 1 entry at a time & that to using Parameter{Name: "value", Value: "100"})...

We recently upgraded our driver version from 1.3.0 to 1.5.2 and encountered the following error when one of our customers tried to deploy our product: > "error":"databricks: driver error: error...

Hi 👋 Currently the `DriverVersion` seems to be maintained manually [here](https://github.com/databricks/databricks-sql-go/blob/750c8a03741857e1e8b00516269900fb3f11b19d/driver.go#L16). So for query history it shows the wrong version An idea would be to generate a `version.go` file when...

This allows use of a non-global logger for finer grained control.

While downloading cloud files a heartbeat will query operation status at regular intervals to keep the connection alive. Implemented heartbeat type which takes an instance of driver.Pinger and calls it...