Integer.valueOf(properties.getProperty("key-database-cache-size")) : null;
String stmt = dba.getSequenceCreateStmt(getSequenceName(), min, max, start, incr, cacheSize);
try
{
ps = sqlControl.getStatementForUpdate(connection, stmt, false);
sqlControl.executeStatementUpdate(connection, stmt, ps, true);
}
catch (SQLException e)
{
NucleusLogger.DATASTORE.error(e);
throw new ValueGenerationException(LOCALISER_RDBMS.msg("061000",e.getMessage()) + stmt);