*/
public synchronized void addParameter(final UUID value) throws SQLException {
final UUIDField field = UUIDField.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 parameter Value to be passed to the Prepared Statement after the other previously added values.