QueryRow executes a SQL query that returns one row, like sql.QueryRow. Queries can be either strings or upper-db statements. Example: sqlbuilder.QueryRow(`SELECT * FROM people WHERE name = "Haruki" AND last_name = "Murakami" LIMIT 1`)
(query interface{}, args ...interface{})
| 129 | // |
| 130 | // sqlbuilder.QueryRow(`SELECT * FROM people WHERE name = "Haruki" AND last_name = "Murakami" LIMIT 1`) |
| 131 | QueryRow(query interface{}, args ...interface{}) (*sql.Row, error) |
| 132 | |
| 133 | // QueryRowContext executes a SQL query that returns one row, like |
| 134 | // sql.QueryRowContext. Queries can be either strings or upper-db statements. |
no outgoing calls