Connection gets the connection for the given database
(dbname string)
| 36 | type Pooler interface { |
| 37 | // Connection gets the connection for the given database |
| 38 | Connection(dbname string) (*sql.DB, error) |
| 39 | // GetDsn returns the connection string for a given database |
| 40 | GetDsn(dbname string) string |
| 41 | // ShutdownConnections closes every database connection |
no outgoing calls
no test coverage detected