https://github.com/firebolt-db/firebolt-go-sdk
https://github.com/firebolt-db/firebolt-go-sdk
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/firebolt-db/firebolt-go-sdk
- Owner: firebolt-db
- License: apache-2.0
- Created: 2022-06-27T11:49:41.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-04-28T10:11:04.000Z (about 1 month ago)
- Last Synced: 2025-04-29T21:17:57.145Z (about 1 month ago)
- Language: Go
- Size: 731 KB
- Stars: 6
- Watchers: 4
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Firebolt GO SDK
[](https://github.com/yuryfirebolt/firebolt-go-sdk/actions/workflows/nightly.yml)
[](https://github.com/yuryfirebolt/firebolt-go-sdk/actions/workflows/code-check.yml)
[](https://github.com/yuryfirebolt/firebolt-go-sdk/actions/workflows/integration-tests.yml)
Firebolt GO driver is an implementation of `database/sql/driver`.
### Installation
```shell
go get github.com/firebolt-db/firebolt-go-sdk
```### DSN (Data source name)
All information for the connection should be specified using the DSN string. The firebolt dsn string has the following format:
```
firebolt://[/database]?account_name=account_name&client_id=client_id&client_secret=client_secret[&engine=engine]
```- **client_id** - client id of the [service account](https://docs.firebolt.io/sql_reference/information-schema/service-accounts.html).
- **client_secret** - client secret of the [service account](https://docs.firebolt.io/sql_reference/information-schema/service-accounts.html).
- **account_name** - the name of Firebolt account to log in to.
- **database** - (optional) the name of the database to connect to.
- **engine** - (optional) the name of the engine to run SQL on.### Querying example
Here is an example of establishing a connection and executing a simple select query.
For it to run successfully, you have to specify your credentials, and have a default engine up and running.```go
package mainimport (
"database/sql"
"fmt"
"log"// we need to import firebolt-go-sdk in order to register the driver
_ "github.com/firebolt-db/firebolt-go-sdk"
)func main() {
// set your Firebolt credentials to construct a dsn string
clientId := ""
clientSecret := ""
accountName := ""
databaseName := ""
engineName := ""
dsn := fmt.Sprintf("firebolt:///%s?account_name=%s&client_id=%s&client_secret=%s&engine=%s", databaseName, accountName, clientId, clientSecret, engineName)// open a Firebolt connection
db, err := sql.Open("firebolt", dsn)
if err != nil {
log.Fatalf("error during opening a driver: %v", err)
}// create a table
_, err = db.Query("CREATE TABLE test_table(id INT, value TEXT)")
if err != nil {
log.Fatalf("error during select query: %v", err)
}// execute a parametrized insert (only ? placeholders are supported)
_, err = db.Query("INSERT INTO test_table VALUES (?, ?)", 1, "my value")
if err != nil {
log.Fatalf("error during select query: %v", err)
}// execute a simple select query
rows, err := db.Query("SELECT id FROM test_table")
if err != nil {
log.Fatalf("error during select query: %v", err)
}// iterate over the result
defer func() {
if err := rows.Close(); err != nil {
log.Printf("error during rows.Close(): %v\n", err)
}
}()for rows.Next() {
var id int
if err := rows.Scan(&id); err != nil {
log.Fatalf("error during scan: %v", err)
}
log.Print(id)
}if err := rows.Err(); err != nil {
log.Fatalf("error during rows iteration: %v\n", err)
}
}
```### Streaming example
In order to stream the query result (and not store it in memory fully), you need to pass a special context with streaming enabled.
> **Warning**: If you enable streaming the result, the query execution might finish successfully, but the actual error might be returned during the iteration over the rows.Here is an example of how to do it:
```go
package mainimport (
"context"
"database/sql"
"fmt"
"log"// we need to import firebolt-go-sdk in order to register the driver
_ "github.com/firebolt-db/firebolt-go-sdk"
fireboltContext "github.com/firebolt-db/firebolt-go-sdk/context"
)func main() {
// set your Firebolt credentials to construct a dsn string
clientId := ""
clientSecret := ""
accountName := ""
databaseName := ""
engineName := ""
dsn := fmt.Sprintf("firebolt:///%s?account_name=%s&client_id=%s&client_secret=%s&engine=%s", databaseName, accountName, clientId, clientSecret, engineName)// open a Firebolt connection
db, err := sql.Open("firebolt", dsn)
if err != nil {
log.Fatalf("error during opening a driver: %v", err)
}// create a streaming context
streamingCtx := fireboltContext.WithStreaming(context.Background())// execute a large select query
rows, err := db.QueryContext(streamingCtx, "SELECT 'abc' FROM generate_series(1, 100000000)")
if err != nil {
log.Fatalf("error during select query: %v", err)
}// iterating over the result is exactly the same as in the previous example
defer func() {
if err := rows.Close(); err != nil {
log.Printf("error during rows.Close(): %v\n", err)
}
}()for rows.Next() {
var data string
if err := rows.Scan(&data); err != nil {
log.Fatalf("error during scan: %v", err)
}
log.Print(data)
}if err := rows.Err(); err != nil {
log.Fatalf("error during rows iteration: %v\n", err)
}
}
```#### Errors in streaming
If you enable streaming the result, the query execution might finish successfully, but the actual error might be returned during the iteration over the rows.### Error handling
The SDK provides specific error types that can be checked using Go's `errors.Is()` function. Here's how to handle different types of errors:```go
package mainimport (
"database/sql"
"errors"
"fmt"
"log"_ "github.com/firebolt-db/firebolt-go-sdk"
fireboltErrors "github.com/firebolt-db/firebolt-go-sdk/errors"
)func main() {
// set your Firebolt credentials to construct a dsn string
clientId := ""
clientSecret := ""
accountName := ""
databaseName := ""
engineName := ""// Example 1: Invalid DSN format (using account-name instead of account_name)
invalidDSN := fmt.Sprintf("firebolt:///%s?account-name=%s&client_id=%s&client_secret=%s&engine=%s",
databaseName, accountName, clientId, clientSecret, engineName)
db, err := sql.Open("firebolt", invalidDSN)
if err != nil {
if errors.Is(err, fireboltErrors.DSNParseError) {
log.Println("Invalid DSN format, please update your DSN and try again")
} else {
log.Fatalf("Unexpected error type: %v", err)
}
}// Example 2: Invalid credentials
invalidCredentialsDSN := fmt.Sprintf("firebolt:///%s?account_name=%s&client_id=%s&client_secret=%s&engine=%s",
databaseName, accountName, "invalid", "invalid", engineName)
db, err = sql.Open("firebolt", invalidCredentialsDSN)
if err != nil {
if errors.Is(err, fireboltErrors.AuthenticationError) {
log.Println("Authentication error. Please check your credentials and try again")
} else {
log.Fatalf("Unexpected error type: %v", err)
}
}
// Example 3: Invalid account name
invalidAccountDSN := fmt.Sprintf("firebolt:///%s?account_name=%s&client_id=%s&client_secret=%s&engine=%s",
databaseName, "invalid", clientId, clientSecret, engineName)
db, err = sql.Open("firebolt", invalidAccountDSN)
if err != nil {
if errors.Is(err, fireboltErrors.InvalidAccountError) {
log.Println("Invalid account name. Please check your account name and try again")
} else {
log.Fatalf("Unexpected error type: %v", err)
}
}
// Example 4: Invalid SQL query
dsn := fmt.Sprintf("firebolt:///%s?account_name=%s&client_id=%s&client_secret=%s&engine=%s",
databaseName, accountName, clientId, clientSecret, engineName)
db, err = sql.Open("firebolt", dsn)
if err != nil {
log.Fatalf("Failed to open connection: %v", err)
}
defer db.Close()// Try to execute an invalid SQL query
_, err = db.Query("SELECT * FROM non_existent_table")
if err != nil {
if errors.Is(err, fireboltErrors.QueryExecutionError) {
log.Printf("Error during query execution. Please fix your SQL query and try again")
} else {
log.Fatalf("Unexpected error type: %v", err)
}
}
}
```The SDK provides the following error types:
- `DSNParseError`: Provided DSN string format is invalid
- `AuthenticationError`: Authentication failure
- `QueryExecutionError`: SQL query execution error
- `AuthorizationError`:A user doesn't have permission to perform an action
- `InvalidAccountError`: Provided account name is invalid or no permissions to access the accountEach error type can be checked using `errors.Is(err, errorType)`. This allows for specific error handling based on the type of error encountered.
### Limitations
Although, all interfaces are available, not all of them are implemented or could be implemented:
- `driver.Result` is a dummy implementation and doesn't return the real result values.
- Named query parameters are not supported