2021-06-16 03:10:52 +08:00
|
|
|
package sql
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
// Blank imports to register the drivers
|
2022-01-29 04:35:03 +08:00
|
|
|
_ "github.com/ClickHouse/clickhouse-go"
|
2023-11-16 18:32:37 +08:00
|
|
|
_ "github.com/IBM/nzgo/v12"
|
2023-05-06 01:04:18 +08:00
|
|
|
_ "github.com/apache/arrow/go/v13/arrow/flight/flightsql/driver"
|
2021-06-16 03:10:52 +08:00
|
|
|
_ "github.com/go-sql-driver/mysql"
|
|
|
|
|
_ "github.com/jackc/pgx/v4/stdlib"
|
2023-07-08 01:01:55 +08:00
|
|
|
_ "github.com/microsoft/go-mssqldb"
|
2023-10-05 15:26:40 +08:00
|
|
|
_ "github.com/sijms/go-ora/v2"
|
2021-06-16 03:10:52 +08:00
|
|
|
)
|