Compare two identifiers.
The comparison is only done on the name column and is case-insesitive.
If the object is not a ColumnIdentifier it returns false
Parameters: other - the object to compare true if the other ColumnIdentifier has the same name
Define the name of this column.
This will also reset the PK and Nullable attributes. isPkColumn()
and isNullable() will return false after setting the name.
Parameters: aName - the (new) name for this identifier
Define the decimal digits for this column (e.g. for DECIMAL columns)
setDefaultValue
public void setDefaultValue(String defaultValue)(Code)
setExpression
public void setExpression(String anExpression)(Code)
Define this column to be an expression.
The major difference to setColumnName() is, that the name will internally
not be stored in lowercase
(But can be used in a SELECT anyway)