Documentation ¶
Index ¶
Constants ¶
View Source
const ( DBTypeClickhouse = "clickhouse" DBTypePostgres = "postgres" )
Variables ¶
View Source
var Connectors = map[string]DBConnector{ DBTypeClickhouse: &ClickHouseConnector{}, DBTypePostgres: &PostgresConnector{}, }
Functions ¶
This section is empty.
Types ¶
type ClickHouseConnector ¶
type ClickHouseConnector struct{}
func (*ClickHouseConnector) VerifyConnection ¶
func (c *ClickHouseConnector) VerifyConnection(db *gorm.DB) error
type DBConnector ¶
type PostgresConnector ¶ added in v0.6.0
type PostgresConnector struct{}
func (*PostgresConnector) VerifyConnection ¶ added in v0.6.0
func (c *PostgresConnector) VerifyConnection(db *gorm.DB) error
Click to show internal directories.
Click to hide internal directories.