Uses of Class
proper.database.Column

Packages that use Column
proper.database All classes concerning Database access and traversal or related structures can be found here. 
 

Uses of Column in proper.database
 

Methods in proper.database that return Column
 Column ColumnTreeNode.getChildColumnAt(int index)
          returns the column of the specified child
 Column ColumnTreeNode.getColumn()
          returns the Column object of this node
 Column Join.getLeftObject()
          returns the local column object
 Column Join.getRightObject()
          returns the foreign column object
 

Methods in proper.database with parameters of type Column
 java.lang.String Table.createForeignKeyStatement(Column localCol, Table foreignTable, Column foreignCol)
          generates an SQL statement for adding a foreign key to this table.
static java.lang.String Table.createForeignKeyStatement(Table localTable, Column localCol, Table foreignTable, Column foreignCol)
          generates an SQL statement for adding a foreign key to this table.
 boolean ColumnTreeNode.isInPath(Column c)
          checks whether the given column is somewhere on the path to the root
 

Constructors in proper.database with parameters of type Column
Join(Column colLeft, Column colRight)
          sets the local and foreign tables/columns, with size 0 and type Types.OTHER
Join(Column colLeft, int size, Column colRight)
          sets the local and foreign tables/columns, with the given local size and type Types.OTHER
Join(Column colLeft, int size, Column colRight, int type)
          sets the local and foreign tables/columns, with the given local size and the specified type