(query string, args ...interface{})
| 180 | // on internal functions that need to be agnostic to the underlying object. |
| 181 | type executor interface { |
| 182 | Exec(query string, args ...interface{}) (sql.Result, error) |
| 183 | Prepare(query string) (*sql.Stmt, error) |
| 184 | QueryRow(query string, args ...interface{}) *sql.Row |
| 185 | Query(query string, args ...interface{}) (*sql.Rows, error) |
no outgoing calls