Query executes a SQL query that returns rows, like sql.Query. Queries can be either strings or upper-db statements. Example: sqlbuilder.Query(`SELECT * FROM people WHERE name = "Mateo"`)
(query interface{}, args ...interface{})
| 113 | // |
| 114 | // sqlbuilder.Query(`SELECT * FROM people WHERE name = "Mateo"`) |
| 115 | Query(query interface{}, args ...interface{}) (*sql.Rows, error) |
| 116 | |
| 117 | // QueryContext executes a SQL query that returns rows, like |
| 118 | // sql.QueryContext. Queries can be either strings or upper-db statements. |
no outgoing calls