| 6 | ) |
| 7 | |
| 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 |
| 14 | sqlx.Ext |
| 15 | sqlx.Preparer |
| 16 | QueryRow(query string, args ...interface{}) *sql.Row |
| 17 | Beginx() (*sqlx.Tx, error) |
| 18 | } |
no outgoing calls
no test coverage detected