Package org.hivedb.util.database

Source Code of org.hivedb.util.database.Statements

package org.hivedb.util.database;

import org.springframework.jdbc.core.PreparedStatementCreatorFactory;

public class Statements {
  /***
   * Taking advantage of variable length argument lists to shorten the syntax
   * @param sql
   * @param types
   * @return
   */
  public static PreparedStatementCreatorFactory newStmtCreatorFactory(String sql, int... types) {
    return new PreparedStatementCreatorFactory(sql, types);
  }
}
TOP

Related Classes of org.hivedb.util.database.Statements

TOP
Copyright © 2018 www.massapi.com. 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.