Skip to the content.

Exasol Go SQL Driver 0.1.0, released 2021-07-14

Code name: Initial implementation of Exasol Go SQL Driver

Summary

This is an initial implementation of the Exasol Go SQL Driver for connection to the Exasol database. This library implements the standard Golang SQL driver interface for easy use.

How to use it In a nutshell:

package main

import (
	"database/sql"
	
	"github.com/exasol/exasol-driver-go"
)

func main() {
	database, err := sql.Open("exasol", exasol.NewConfig("<username>", "<password>").Port(<port>).Host("<host>").String())
	...
}

For additional information please refer to the documentation: https://github.com/exasol/exasol-driver-go

Features

Refactoring