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"
|
2021-06-16 03:10:52 +08:00
|
|
|
_ "github.com/denisenkom/go-mssqldb"
|
|
|
|
|
_ "github.com/go-sql-driver/mysql"
|
|
|
|
|
_ "github.com/jackc/pgx/v4/stdlib"
|
|
|
|
|
)
|