Runs the Query, returning a Result object. Optionally accepts a list of params for the query to be ran with. The params are added to the query, and if the query is re-ran for the second time, do not need to be added again.
Connection c; auto q = Query(c); q = "SELECT $1"; q.run(123);
See Implementation
Runs the Query, returning a Result object. Optionally accepts a list of params for the query to be ran with. The params are added to the query, and if the query is re-ran for the second time, do not need to be added again.