(dest interface{}, query string, args ...interface{})
| 8 | type DatabaseConnection interface { |
| 9 | Select(dest interface{}, query string, args ...interface{}) error |
| 10 | Get(dest interface{}, query string, args ...interface{}) error |
| 11 | MustBegin() *sqlx.Tx |
| 12 | Preparex(query string) (*sqlx.Stmt, error) |
| 13 | Stats() sql.DBStats |
no outgoing calls