Queryer is an interface used by Get and Select
| 75 | |
| 76 | // Queryer is an interface used by Get and Select |
| 77 | type Queryer interface { |
| 78 | Query(query string, args ...interface{}) (*sql.Rows, error) |
| 79 | Queryx(query string, args ...interface{}) (*Rows, error) |
| 80 | QueryRowx(query string, args ...interface{}) *Row |
| 81 | } |
| 82 | |
| 83 | // Execer is an interface used by MustExec and LoadFile |
| 84 | type Execer interface { |
no outgoing calls
no test coverage detected