Uses of Class
com.github.tadukoo.database.mysql.syntax.ForeignKeyConstraint
Packages that use ForeignKeyConstraint
Package
Description
Contains
DatabasePojo, which can be used to store and
retrieve the pojo values from a DatabaseContains syntax elements to help build SQL statements
Contains classes for creating MySQL statements
-
Uses of ForeignKeyConstraint in com.github.tadukoo.database.mysql.pojo
Fields in com.github.tadukoo.database.mysql.pojo with type parameters of type ForeignKeyConstraintModifier and TypeFieldDescriptionprivate final List<ForeignKeyConstraint>AbstractDatabasePojo.foreignKeysThe List of anyforeign keyspresent for this pojoMethods in com.github.tadukoo.database.mysql.pojo that return types with arguments of type ForeignKeyConstraintModifier and TypeMethodDescriptionAbstractDatabasePojo.getForeignKeys()DatabasePojo.getForeignKeys()Methods in com.github.tadukoo.database.mysql.pojo with parameters of type ForeignKeyConstraintModifier and TypeMethodDescriptiondefault voidDatabasePojo.addForeignKey(ForeignKeyConstraint foreignKey) Adds the givenforeign keyto this pojodefault voidDatabasePojo.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
Methods in com.github.tadukoo.database.mysql.syntax that return ForeignKeyConstraintModifier and TypeMethodDescriptionForeignKeyConstraint.ForeignKeyConstraintBuilder.build()Builds a newForeignKeyConstraintusing the set parametersForeignKeyConstraint.OptionsOrBuild.build()Builds a newForeignKeyConstraintusing the set parameters -
Uses of ForeignKeyConstraint in com.github.tadukoo.database.mysql.syntax.statement
Fields in com.github.tadukoo.database.mysql.syntax.statement declared as ForeignKeyConstraintModifier and TypeFieldDescriptionprivate final ForeignKeyConstraintSQLAlterStatement.foreignKeyTheforeign keyto be added to the tableprivate ForeignKeyConstraintSQLAlterStatement.SQLAlterStatementBuilder.foreignKeyTheforeign keyto be added to the tableFields in com.github.tadukoo.database.mysql.syntax.statement with type parameters of type ForeignKeyConstraintModifier and TypeFieldDescriptionprivate final List<ForeignKeyConstraint>SQLCreateStatement.foreignKeysTheforeign keysto add to the tableprivate final List<ForeignKeyConstraint>SQLCreateStatement.SQLCreateStatementBuilder.foreignKeysTheforeign keysto add to the tableMethods in com.github.tadukoo.database.mysql.syntax.statement that return ForeignKeyConstraintMethods in com.github.tadukoo.database.mysql.syntax.statement that return types with arguments of type ForeignKeyConstraintMethods in com.github.tadukoo.database.mysql.syntax.statement with parameters of type ForeignKeyConstraintModifier and TypeMethodDescriptionSQLAlterStatement.ColumnDefOrForeignKey.foreignKey(ForeignKeyConstraint foreignKey) SQLAlterStatement.SQLAlterStatementBuilder.foreignKey(ForeignKeyConstraint foreignKey) SQLCreateStatement.ForeignKeysOrBuild.foreignKey(ForeignKeyConstraint foreignKey) SQLCreateStatement.SQLCreateStatementBuilder.foreignKey(ForeignKeyConstraint foreignKey) Constructors in com.github.tadukoo.database.mysql.syntax.statement with parameters of type ForeignKeyConstraintModifierConstructorDescriptionprivateSQLAlterStatement(SQLType type, String tableName, SQLColumnOperation operation, String columnName, ColumnDefinition columnDef, ForeignKeyConstraint foreignKey) Constructs aSQLAlterStatementusing the given parameters