Package | Description |
---|---|
org.kepler.objectmanager.data.db |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
JoinConditionConstraint.printString()
Method to print out a part sql command about joincondition.
|
java.lang.String |
UniqueKey.printString()
Method to transfer a unique key into sql command (table constraint) The
string will look like: CONSTRAINT constrain_name Primary Key ( col1,
col2, ...)
|
java.lang.String |
Constraint.printString() |
java.lang.String |
PrimaryKey.printString()
Method to transfer a primary key into sql command (table constraint) The
string will look like: CONSTRAINT constrain_name Primary Key ( col1,
col2, ...)
|
java.lang.String |
NotNullConstraint.printString()
Method to print not null key words in sql cmommand
|
java.lang.String |
ForeignKey.printString()
Method to print out a part sql command about foreign key In foreign key,
you don't need to specify the referenced entity's column name, the
primary key column(s) of the referenced table is used as the referenced
column(s)
|