Runs a select query and returns the result. This method does not break the flow of the protocol like query does. This method is intended for usage with complex queries.
auto result = database.querySelect("select * from test order by rand() limit 1"); result.bind!Test();
See Implementation
Runs a select query and returns the result. This method does not break the flow of the protocol like query does. This method is intended for usage with complex queries.