(query string, args ...interface{})
| 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 | } |
no outgoing calls