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