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