Package org.g4studio.core.orm.xibatis.sqlmap.client.extensions

Examples of org.g4studio.core.orm.xibatis.sqlmap.client.extensions.ParameterSetter


  public CustomTypeHandler(TypeHandlerCallback callback) {
    this.callback = callback;
  }

  public void setParameter(PreparedStatement ps, int i, Object parameter, String jdbcType) throws SQLException {
    ParameterSetter setter = new ParameterSetterImpl(ps, i);
    callback.setParameter(setter, parameter);
  }
View Full Code Here

TOP

Related Classes of org.g4studio.core.orm.xibatis.sqlmap.client.extensions.ParameterSetter

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.