* @param params the parameters to add to the prepared statement created by connection and query
* @return the results of helperQuery.execute();
* @throws SQLException
*/
public static ResultSet executeQuery(String connectionUrl, Map<String, String> properties, String query, QueryParameter... params) throws SQLException {
return new HelperConnection(connectionUrl, properties).executeQuery(new HelperQuery(query, params));
}