Uses of Class
net.ontopia.persistence.rdbms.Column
-
Packages that use Column Package Description net.ontopia.persistence.rdbms Classes for managing relational database schemas. -
-
Uses of Column in net.ontopia.persistence.rdbms
Fields in net.ontopia.persistence.rdbms with type parameters of type Column Modifier and Type Field Description protected Map<String,Column>Table. colsmapprotected List<Column>Table. columnsMethods in net.ontopia.persistence.rdbms that return Column Modifier and Type Method Description ColumnTable. getColumnByName(String name)INTERNAL: Gets a column by name.Methods in net.ontopia.persistence.rdbms that return types with arguments of type Column Modifier and Type Method Description List<Column>Table. getColumns()INTERNAL: Gets all the columns in the table.Methods in net.ontopia.persistence.rdbms with parameters of type Column Modifier and Type Method Description voidTable. addColumn(Column column)INTERNAL: Adds the column to the table definition.protected List<String>GenericSQLProducer. addForeignKey(Table table, Column col, String keyname, List<String> statements)INTERNAL: Generate the DDL statement(s) to add foreigns keys for the specified column.protected List<String>GenericSQLProducer. dropConstraint(Table table, Column col, String keyname, List<String> statements)INTERNAL: Generate the DDL statement(s) to drop foreigns keys for the specified column.voidTable. removeColumn(Column column)INTERNAL: Removes the column from the table definition.
-