Uses of Interface
de.mid.innovator.srv2api.icw2db.DBSQLObject
-
Packages that use DBSQLObject Package Description de.mid.innovator.srv2api.icw2db The DB package (specialization of the IM package) describes the concepts needed for modeling a relational database. -
-
Uses of DBSQLObject in de.mid.innovator.srv2api.icw2db
Subinterfaces of DBSQLObject in de.mid.innovator.srv2api.icw2db Modifier and Type Interface Description interface
DBCheckConstraint
interface
DBColumn
This is a utility class for DBColumn that provides static methods for creation or other purposes.interface
DBColumnSet
interface
DBForeignKey
interface
DBIndex
interface
DBIndexedColumn
interface
DBPackage
ADBPackage
is both aMEPackage
for organizing elements in a tree and aDBSQLObject
for modeling privileges or relationships to other SQL objects.interface
DBSQLGeneric
interface
DBStoredProcedure
interface
DBTable
interface
DBTableColumn
interface
DBTrigger
interface
DBUniqueKey
interface
DBView
interface
DBViewColumn
interface
DBViewFrom
interface
DBViewSubselectFrom
ADBViewSubselectFrom
of aDBView
points to anDBColumnSet
to use its columns in subselects wihtin expressions.Methods in de.mid.innovator.srv2api.icw2db with type parameters of type DBSQLObject Modifier and Type Method Description <T extends DBSQLObject>
java.util.List<T>DBSQLObject. getReferencedSQLObject(java.lang.Class<T> returnType)
List of all SQL Objects using thisDBSQLObject
.<T extends DBSQLObject>
java.util.List<T>DBSQLObject. getReferencingSQLObject(java.lang.Class<T> returnType)
List of all SQL Objects used by thisDBSQLObject
.<T extends DBSQLObject>
java.util.List<T>DBPrivilege. getSQLObject(java.lang.Class<T> returnType)
List of all SQL objects of thisDBPrivilege
.Method parameters in de.mid.innovator.srv2api.icw2db with type arguments of type DBSQLObject Modifier and Type Method Description void
DBSQLObject. setReferencedSQLObject(java.util.List<? extends DBSQLObject> values)
Set the value of Foreign Key ReferencedSQLObject.void
DBSQLObject. setReferencingSQLObject(java.util.List<? extends DBSQLObject> values)
Set the value of Foreign Key ReferencingSQLObject.void
DBPrivilege. setSQLObject(java.util.List<? extends DBSQLObject> values)
Set the value of Foreign Key SQLObject.
-