(query string, args ...interface{})
| 552 | type qStmt struct{ *Stmt } |
| 553 | |
| 554 | func (q *qStmt) Query(query string, args ...interface{}) (*sql.Rows, error) { |
| 555 | return q.Stmt.Query(args...) |
| 556 | } |
| 557 | |
| 558 | func (q *qStmt) Queryx(query string, args ...interface{}) (*Rows, error) { |
| 559 | r, err := q.Stmt.Query(args...) |