Method
Open
(dsn string, encKeyring []*EncryptionKey)
Source from the content-addressed store, hash-verified
| 45 | // Driver is the interface for DB drivers. |
| 46 | type Driver interface { |
| 47 | Open(dsn string, encKeyring []*EncryptionKey) (DB, error) |
| 48 | } |
| 49 | |
| 50 | // DB is the interface for a database connection. |
Implementers 15
driverruntime/drivers/bigquery/bigquery.go driverruntime/drivers/druid/druid.go driverruntime/drivers/gemini/gemini.go driverruntime/drivers/athena/athena.go driverruntime/drivers/redshift/redshift.go driverruntime/drivers/postgres/postgres.go driverruntime/drivers/azure/azure.go driverruntime/drivers/gcs/gcs.go driverruntime/drivers/mysql/mysql.go driverruntime/drivers/s3/s3.go driverruntime/drivers/openai/openai.go