(query string, args ...interface{})
| 564 | } |
| 565 | |
| 566 | func (q *qStmt) QueryRowx(query string, args ...interface{}) *Row { |
| 567 | rows, err := q.Stmt.Query(args...) |
| 568 | return &Row{rows: rows, err: err, unsafe: q.Stmt.unsafe, Mapper: q.Stmt.Mapper} |
| 569 | } |
| 570 | |
| 571 | func (q *qStmt) Exec(query string, args ...interface{}) (sql.Result, error) { |
| 572 | return q.Stmt.Exec(args...) |