Package org.byteliberi.easydriver.fields

Examples of org.byteliberi.easydriver.fields.BooleanField.map()


   */
  public synchronized void addParameter(final Boolean value) throws SQLException {
    final BooleanField field = BooleanField.getEmpty();
    this.parameterManagerList.add(field);
   
    field.map(pstm, this.paramIndex.addAndGet(1), value);
  }
 
  /**
   * Appends a {@link java.lang.String} parameter to the internal prepared statement.
   * @param value Value to be passed to the Prepared Statement after the other previously added values.
View Full Code Here

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.