(query string, args ...interface{})
| 31 | // Exec executes the given query as implemented by database/sql.Exec. |
| 32 | type Execer interface { |
| 33 | Exec(query string, args ...interface{}) (sql.Result, error) |
| 34 | } |
| 35 | |
| 36 | // Queryer is the interface that wraps the Query method. |
no outgoing calls