(SQL string, params ...interface{})
| 5 | // QueryExecutor runs SQL statements against the database. |
| 6 | type QueryExecutor interface { |
| 7 | Query(SQL string, params ...interface{}) (sc Scanner) |
| 8 | QueryCtx(ctx context.Context, SQL string, params ...interface{}) (sc Scanner) |
| 9 | QueryCount(SQL string, params ...interface{}) (sc Scanner) |
| 10 | QueryCountCtx(ctx context.Context, SQL string, params ...interface{}) (sc Scanner) |
no outgoing calls