(query string, args ...interface{})
| 45 | // It is implemented by both sql.DB and sql.Txn. |
| 46 | type sqlExecutor interface { |
| 47 | Exec(query string, args ...interface{}) (sql.Result, error) |
| 48 | Query(query string, args ...interface{}) (*sql.Rows, error) |
| 49 | QueryRow(query string, args ...interface{}) *sql.Row |
| 50 | } |
no outgoing calls