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