Select using the prepared statement. Any placeholder parameters are replaced with supplied args.
(dest interface{}, args ...interface{})
| 516 | // Select using the prepared statement. |
| 517 | // Any placeholder parameters are replaced with supplied args. |
| 518 | func (s *Stmt) Select(dest interface{}, args ...interface{}) error { |
| 519 | return Select(&qStmt{s}, dest, "", args...) |
| 520 | } |
| 521 | |
| 522 | // Get using the prepared statement. |
| 523 | // Any placeholder parameters are replaced with supplied args. |