Package com.kentcdodds.javahelper.model

Examples of com.kentcdodds.javahelper.model.HelperConnection


   * @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));
  }
View Full Code Here

TOP

Related Classes of com.kentcdodds.javahelper.model.HelperConnection

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.