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