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