QueryRowx using this statement. Any placeholder parameters are replaced with supplied args.
(args ...interface{})
| 536 | // QueryRowx using this statement. |
| 537 | // Any placeholder parameters are replaced with supplied args. |
| 538 | func (s *Stmt) QueryRowx(args ...interface{}) *Row { |
| 539 | qs := &qStmt{s} |
| 540 | return qs.QueryRowx("", args...) |
| 541 | } |
| 542 | |
| 543 | // Queryx using this statement. |
| 544 | // Any placeholder parameters are replaced with supplied args. |