Uses of Class
com.github.tadukoo.database.mysql.syntax.ForeignKeyConstraint
Package
Description
Contains
DatabasePojo
, which can be used to store and
retrieve the pojo values from a Database
Contains syntax elements to help build SQL statements
Contains classes for creating MySQL statements
-
Uses of ForeignKeyConstraint in com.github.tadukoo.database.mysql.pojo
Modifier and TypeFieldDescriptionprivate final List<ForeignKeyConstraint>
AbstractDatabasePojo.foreignKeys
The List of anyforeign keys
present for this pojoModifier and TypeMethodDescriptionAbstractDatabasePojo.getForeignKeys()
DatabasePojo.getForeignKeys()
Modifier and TypeMethodDescriptiondefault void
DatabasePojo.addForeignKey
(ForeignKeyConstraint foreignKey) Adds the givenforeign key
to this pojodefault void
DatabasePojo.addSubPojo
(SubPojoDefinition subPojoDef, DatabasePojo subPojo, ForeignKeyConstraint foreignKey) Adds the info for a subPojo using the given parameters -
Uses of ForeignKeyConstraint in com.github.tadukoo.database.mysql.syntax
Modifier and TypeMethodDescriptionForeignKeyConstraint.ForeignKeyConstraintBuilder.build()
Builds a newForeignKeyConstraint
using the set parametersForeignKeyConstraint.OptionsOrBuild.build()
Builds a newForeignKeyConstraint
using the set parameters -
Uses of ForeignKeyConstraint in com.github.tadukoo.database.mysql.syntax.statement
Modifier and TypeFieldDescriptionprivate final ForeignKeyConstraint
SQLAlterStatement.foreignKey
Theforeign key
to be added to the tableprivate ForeignKeyConstraint
SQLAlterStatement.SQLAlterStatementBuilder.foreignKey
Theforeign key
to be added to the tableModifier and TypeFieldDescriptionprivate final List<ForeignKeyConstraint>
SQLCreateStatement.foreignKeys
Theforeign keys
to add to the tableprivate final List<ForeignKeyConstraint>
SQLCreateStatement.SQLCreateStatementBuilder.foreignKeys
Theforeign keys
to add to the tableModifier and TypeMethodDescriptionSQLAlterStatement.ColumnDefOrForeignKey.foreignKey
(ForeignKeyConstraint foreignKey) SQLAlterStatement.SQLAlterStatementBuilder.foreignKey
(ForeignKeyConstraint foreignKey) SQLCreateStatement.ForeignKeysOrBuild.foreignKey
(ForeignKeyConstraint foreignKey) SQLCreateStatement.SQLCreateStatementBuilder.foreignKey
(ForeignKeyConstraint foreignKey) ModifierConstructorDescriptionprivate
SQLAlterStatement
(SQLType type, String tableName, SQLColumnOperation operation, String columnName, ColumnDefinition columnDef, ForeignKeyConstraint foreignKey) Constructs aSQLAlterStatement
using the given parameters