Queryx using this statement. Any placeholder parameters are replaced with supplied args.
(args ...interface{})
| 543 | // Queryx using this statement. |
| 544 | // Any placeholder parameters are replaced with supplied args. |
| 545 | func (s *Stmt) Queryx(args ...interface{}) (*Rows, error) { |
| 546 | qs := &qStmt{s} |
| 547 | return qs.Queryx("", args...) |
| 548 | } |
| 549 | |
| 550 | // qStmt is an unexposed wrapper which lets you use a Stmt as a Queryer & Execer by |
| 551 | // implementing those interfaces and ignoring the `query` argument. |