Package com.mckoi.database
Class Transaction.ColumnGroupReference
java.lang.Object
com.mckoi.database.Transaction.ColumnGroupReference
- Enclosing class:
Transaction
Represents a reference from a group of columns in one table to a group of
columns in another table. The is used to represent a foreign key
reference.
-
Field Summary
FieldsModifier and TypeFieldDescriptionshort
Whether this is deferred or initially immediate.The delete rule.String[]
The list of columns that make up the key.The key table name.The name of the group (the constraint name).String[]
The list of columns that make up the referenced group.The referenced table name.The update rule. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
name
The name of the group (the constraint name). -
key_table_name
The key table name. -
key_columns
The list of columns that make up the key. -
ref_table_name
The referenced table name. -
ref_columns
The list of columns that make up the referenced group. -
update_rule
The update rule. -
delete_rule
The delete rule. -
deferred
public short deferredWhether this is deferred or initially immediate.
-
-
Constructor Details
-
ColumnGroupReference
public ColumnGroupReference()
-