Uses of Enum Class
com.tietoenator.trip.jxp.database.TdbIntegrityType
Packages that use TdbIntegrityType
Package
Description
Classes to inspect and modify database design.
-
Uses of TdbIntegrityType in com.tietoenator.trip.jxp.database
Methods in com.tietoenator.trip.jxp.database that return TdbIntegrityTypeModifier and TypeMethodDescriptionTdbIntegrityRule.getOnDelete()Retrieve the action to be taken in the current database if a record in the target database is deleted.TdbIntegrityRule.getOnUpdate()Retrieve the action to be taken in the current database if a record in the target database is updated.static TdbIntegrityTypeRetrieve the integrity type ID that matches the provided namestatic TdbIntegrityTypeReturns the enum constant of this class with the specified name.static TdbIntegrityType[]TdbIntegrityType.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.tietoenator.trip.jxp.database with parameters of type TdbIntegrityTypeModifier and TypeMethodDescriptionvoidTdbDatabaseDesign.addForeignKey(String key, String linkdb, String linkfld, TdbIntegrityType on_update, TdbIntegrityType on_delete) Create a foreign key relationship between this database (as the slave) and another database (as the master).voidTdbIntegrityRule.setOnDelete(TdbIntegrityType action) Establish the action to be taken in the current database if a record in the target database is deleted.voidTdbIntegrityRule.setOnUpdate(TdbIntegrityType action) Establish the action to be taken in the current database if a record in the target database is updated.