public class AlterSequenceCommand extends CreateCommand
ALTER SEQUENCE
command.
NOTE: One can't change DataType as per ANSI 2003 spec.Constructor and Description |
---|
AlterSequenceCommand() |
Modifier and Type | Method and Description |
---|---|
boolean |
execute(Database db)
Executes an SQL statement that may return multiple results.
|
void |
setCycle(boolean cycle) |
void |
setIncrementBy(java.lang.String incrementBy) |
void |
setMaxValue(java.lang.String maxValue) |
void |
setMinValue(java.lang.String minValue) |
void |
setStartValue(java.lang.String value) |
executeQuery, executeUpdate, getObjectName, isIfNotExists, setIfNotExists, setObjectName
assertNotReadOnly, attemptToConvertValue, bindAll, buildBindVariables, clearBindings, createResolveSelectableVisitor, executeQuery, getBindVariableIterator, getBindVariableIterator, getBindVariables, getBindVariableVisitor, getColIdentifierList, getCommitSize, getEffectedRowCount, getResultSet, getRowIterator, makeRowDecorator, populateDefaultValues, populateSequenceColumns, resolveGeneratedColumns, resolveGeneratedColumns, resolveSelectable, resolveSelectable, resolveSelectableList, resolveSelectableList, setBindVariableVisitor, setDeferAllConstraintIfRequired, setEffectedRowCount, setResultSet, updateGeneratedValues
public void setStartValue(java.lang.String value)
public void setIncrementBy(java.lang.String incrementBy)
public void setMaxValue(java.lang.String maxValue)
public void setMinValue(java.lang.String minValue)
public void setCycle(boolean cycle)
public boolean execute(Database db) throws AxionException
AxionCommand
execute
in interface AxionCommand
execute
in class CreateCommand
ResultSet
s were generated,
false otherwiseAxionException
Statement.execute(java.lang.String)
,
PreparedStatement.execute()