Uses of Class
org.jpox.store.rdbms.Column

Packages that use Column
org.jpox.store.rdbms Package providing management of the persistence to RDBMS datastores. 
org.jpox.store.rdbms.adapter Provides mappings of all supported databases to aspects of the database that determines the SQL generation. 
org.jpox.store.rdbms.exceptions   
org.jpox.store.rdbms.key This package contains wrappers to various types of keys found in RDBMS databases. 
org.jpox.store.rdbms.mapping Package containing mappings for datastore (JDBC) types. 
org.jpox.store.rdbms.table Provides a series of classes modelling tables and views, firstly in RDBMS, and then extending this to JDO representations. 
 

Uses of Column in org.jpox.store.rdbms
 

Methods in org.jpox.store.rdbms that return Column
 Column Column.setTypeInfo(TypeInfo typeInfo)
          Mutator for the type information of the column.
 Column Column.setConstraints(java.lang.String constraints)
          Mutator for the constraints of the column.
 Column Column.setUnique()
          Mutator for the uniqueness of the column.
 

Uses of Column in org.jpox.store.rdbms.adapter
 

Methods in org.jpox.store.rdbms.adapter with parameters of type Column
 java.lang.String RDBMSAdapter.getAddColumnStatement(DatastoreContainerObject table, Column col)
          Accessor for the SQL statement to add a column to a table.
 java.lang.String RDBMSAdapter.getCreateTableStatement(TableImpl table, Column[] columns, java.util.Properties props)
          Returns the appropriate SQL to create the given table having the given columns.
 java.lang.String DatabaseAdapter.getCreateTableStatement(TableImpl table, Column[] columns, java.util.Properties props)
          Returns the appropriate SQL to create the given table having the given columns.
 java.lang.String DatabaseAdapter.getAddColumnStatement(DatastoreContainerObject table, Column col)
          Accessor for the SQL statement to add a column to a table.
 

Uses of Column in org.jpox.store.rdbms.exceptions
 

Methods in org.jpox.store.rdbms.exceptions that return Column
 Column DuplicateColumnNameException.getConflictingColumn()
          Accessor for the column that could not be created because it conflicts with something already present.
 

Constructors in org.jpox.store.rdbms.exceptions with parameters of type Column
DuplicateColumnNameException(java.lang.String tableName, Column column, Column conflictingColumn)
          Constructs a duplicate column name exception.
IncompatibleDataTypeException(Column column, int expectedType, int actualType)
          Constructs an incompatible data type exception.
 

Uses of Column in org.jpox.store.rdbms.key
 

Methods in org.jpox.store.rdbms.key with parameters of type Column
 void Index.setColumn(int seq, Column col)
          Sets a column for in a specified position seq
 

Uses of Column in org.jpox.store.rdbms.mapping
 

Fields in org.jpox.store.rdbms.mapping declared as Column
protected  Column ColumnMapping.column
           
 

Methods in org.jpox.store.rdbms.mapping that return Column
 Column ColumnMapping.getColumn()
           
 

Uses of Column in org.jpox.store.rdbms.table
 

Methods in org.jpox.store.rdbms.table with parameters of type Column
protected  void AbstractTable.addColumnInternal(Column col)
          Utility method to add a column to the internal representation
protected  void ViewImpl.addColumnInternal(Column col)
          Method to add a Column to the View.
 



Copyright © -2007 . All Rights Reserved.