Uses of Class
com.uwyn.rife.database.queries.CreateTable

Packages that use CreateTable
com.uwyn.rife.authentication.credentialsmanagers Provides classes and interfaces for managing RoleUser credentials. 
com.uwyn.rife.authentication.remembermanagers Provides managers classes for "remember me" support. 
com.uwyn.rife.authentication.sessionmanagers Provides managers classes for authentication sessions support. 
com.uwyn.rife.cmf.dam.contentmanagers Provides managers classes for content information support. 
com.uwyn.rife.cmf.dam.contentstores Provides managers classes for content data support. 
com.uwyn.rife.database.queries Provides classes and interfaces for the object-oriented query builders. 
com.uwyn.rife.database.querymanagers.generic Provides classes and interfaces for the persistance framework. 
com.uwyn.rife.resources Provides classes and interfaces for the resource abstraction framework. 
com.uwyn.rife.scheduler.taskmanagers Provides classes and interfaces for managing tasks. 
com.uwyn.rife.scheduler.taskoptionmanagers Provides classes and interfaces for managing task options. 
 

Uses of CreateTable in com.uwyn.rife.authentication.credentialsmanagers
 

Methods in com.uwyn.rife.authentication.credentialsmanagers with parameters of type CreateTable
protected  boolean DatabaseUsers._install(CreateSequence createSequenceRole, CreateTable createTableRole, CreateTable createTableUser, CreateTable createTableRoleLink)
           
 

Uses of CreateTable in com.uwyn.rife.authentication.remembermanagers
 

Methods in com.uwyn.rife.authentication.remembermanagers with parameters of type CreateTable
protected  boolean DatabaseRemember._install(CreateTable createRemember, String createRememberMomentIndex)
           
 

Uses of CreateTable in com.uwyn.rife.authentication.sessionmanagers
 

Methods in com.uwyn.rife.authentication.sessionmanagers with parameters of type CreateTable
protected  boolean DatabaseSessions._install(CreateTable createAuthentication, String createAuthenticationSessStartIndex)
           
 

Uses of CreateTable in com.uwyn.rife.cmf.dam.contentmanagers
 

Methods in com.uwyn.rife.cmf.dam.contentmanagers with parameters of type CreateTable
protected  boolean DatabaseContent._install(CreateSequence createSequenceContentRepository, CreateSequence createSequenceContentInfo, CreateTable createTableContentRepository, CreateTable createTableContentInfo, CreateTable createTableContentAttribute, CreateTable createTableContentProperty)
           
 

Uses of CreateTable in com.uwyn.rife.cmf.dam.contentstores
 

Methods in com.uwyn.rife.cmf.dam.contentstores with parameters of type CreateTable
protected  boolean DatabaseContentStore._install(CreateTable createTableContentStore)
           
protected  boolean DatabaseRawStore._install(CreateTable createTableContentInfo, CreateTable createTableContentChunk)
           
 

Uses of CreateTable in com.uwyn.rife.database.queries
 

Methods in com.uwyn.rife.database.queries that return CreateTable
 CreateTable CreateTable.check(String expression)
           
 CreateTable CreateTable.check(String name, String expression)
           
 CreateTable CreateTable.clone()
           
 CreateTable CreateTable.column(String name, Class type)
           
 CreateTable CreateTable.column(String name, Class type, CreateTable.Nullable nullable)
           
 CreateTable CreateTable.column(String name, Class type, int precision)
           
 CreateTable CreateTable.column(String name, Class type, int precision, CreateTable.Nullable nullable)
           
 CreateTable CreateTable.column(String name, Class type, int precision, int scale)
           
 CreateTable CreateTable.column(String name, Class type, int precision, int scale, CreateTable.Nullable nullable)
           
 CreateTable CreateTable.column(String name, Class type, int precision, int scale, String typeAttribute)
           
 CreateTable CreateTable.column(String name, Class type, int precision, int scale, String typeAttribute, CreateTable.Nullable nullable)
           
 CreateTable CreateTable.column(String name, Class type, int precision, String typeAttribute)
           
 CreateTable CreateTable.column(String name, Class type, int precision, String typeAttribute, CreateTable.Nullable nullable)
           
 CreateTable CreateTable.column(String name, Class type, String typeAttribute)
           
 CreateTable CreateTable.column(String name, Class type, String typeAttribute, CreateTable.Nullable nullable)
           
 CreateTable CreateTable.columns(Class beanClass)
           
 CreateTable CreateTable.columns(Object[] keyValues)
           
 CreateTable CreateTable.columnsExcluded(Class beanClass, String[] excludedFields)
           
 CreateTable CreateTable.columnsFiltered(Class beanClass, String[] includedFields, String[] excludedFields)
           
 CreateTable CreateTable.columnsIncluded(Class beanClass, String[] includedFields)
           
 CreateTable CreateTable.customAttribute(String name, String attribute)
           
 CreateTable CreateTable.defaultFunction(String name, String defaultFunction)
           
 CreateTable CreateTable.defaultValue(String name, boolean value)
           
 CreateTable CreateTable.defaultValue(String name, byte value)
           
 CreateTable CreateTable.defaultValue(String name, char value)
           
 CreateTable CreateTable.defaultValue(String name, double value)
           
 CreateTable CreateTable.defaultValue(String name, float value)
           
 CreateTable CreateTable.defaultValue(String name, int value)
           
 CreateTable CreateTable.defaultValue(String name, long value)
           
 CreateTable CreateTable.defaultValue(String name, Object value)
           
 CreateTable CreateTable.defaultValue(String name, short value)
           
 CreateTable CreateTable.foreignKey(String foreignTable, String[] columnsMapping)
           
 CreateTable CreateTable.foreignKey(String foreignTable, String[] columnsMapping, CreateTable.ViolationAction onUpdate, CreateTable.ViolationAction onDelete)
           
 CreateTable CreateTable.foreignKey(String foreignTable, String localColumn, String foreignColumn)
           
 CreateTable CreateTable.foreignKey(String name, String foreignTable, String[] columnsMapping)
           
 CreateTable CreateTable.foreignKey(String name, String foreignTable, String[] columnsMapping, CreateTable.ViolationAction onUpdate, CreateTable.ViolationAction onDelete)
           
 CreateTable CreateTable.foreignKey(String foreignTable, String localColumn, String foreignColumn, CreateTable.ViolationAction onUpdate, CreateTable.ViolationAction onDelete)
           
 CreateTable CreateTable.foreignKey(String name, String foreignTable, String localColumn, String foreignColumn)
           
 CreateTable CreateTable.foreignKey(String name, String foreignTable, String localColumn, String foreignColumn, CreateTable.ViolationAction onUpdate, CreateTable.ViolationAction onDelete)
           
 CreateTable CreateTable.nullable(String name, CreateTable.Nullable nullable)
           
 CreateTable CreateTable.precision(String name, int precision)
           
 CreateTable CreateTable.precision(String name, int precision, int scale)
           
 CreateTable CreateTable.primaryKey(String column)
           
 CreateTable CreateTable.primaryKey(String[] columns)
           
 CreateTable CreateTable.primaryKey(String name, String column)
           
 CreateTable CreateTable.primaryKey(String name, String[] columns)
           
 CreateTable CreateTable.table(String table)
           
 CreateTable CreateTable.temporary(boolean temporary)
           
 CreateTable CreateTable.unique(String column)
           
 CreateTable CreateTable.unique(String[] columns)
           
 CreateTable CreateTable.unique(String name, String column)
           
 CreateTable CreateTable.unique(String name, String[] columns)
           
 

Uses of CreateTable in com.uwyn.rife.database.querymanagers.generic
 

Methods in com.uwyn.rife.database.querymanagers.generic that return CreateTable
 CreateTable GenericQueryManager.getInstallTableQuery()
          Get the query that would be used to install the table.
 CreateTable GenericQueryManagerDelegate.getInstallTableQuery()
           
 

Methods in com.uwyn.rife.database.querymanagers.generic with parameters of type CreateTable
protected  void AbstractGenericQueryManager._install(CreateSequence createSequence, CreateTable createTable)
           
 void GenericQueryManager.install(CreateTable query)
          Install the database structure into the database using a custom query.
 void GenericQueryManagerDelegate.install(CreateTable query)
           
 

Uses of CreateTable in com.uwyn.rife.resources
 

Methods in com.uwyn.rife.resources with parameters of type CreateTable
protected  boolean DatabaseResources._install(CreateTable createTable)
           
 

Uses of CreateTable in com.uwyn.rife.scheduler.taskmanagers
 

Methods in com.uwyn.rife.scheduler.taskmanagers with parameters of type CreateTable
protected  boolean DatabaseTasks._install(CreateSequence createSequenceTask, CreateTable createTableTask)
           
 

Uses of CreateTable in com.uwyn.rife.scheduler.taskoptionmanagers
 

Methods in com.uwyn.rife.scheduler.taskoptionmanagers with parameters of type CreateTable
protected  boolean DatabaseTaskoptions._install(CreateTable createTableTaskoption)
           
 



Copyright © 2001-2007 Uwyn sprl/bvba. All Rights Reserved.