Uses of Interface
net.sf.jaxme.sqls.db2.TableSpace

Packages that use TableSpace
net.sf.jaxme.sqls.db2 DB2 support for the SQL generator This package contains some classes and interfaces enhancing the SQL generator with DB2 specific features.  
 

Uses of TableSpace in net.sf.jaxme.sqls.db2
 

Classes in net.sf.jaxme.sqls.db2 that implement TableSpace
 class DB2SQLFactoryImpl.PredefinedTableSpace
          An immutable, predefined TableSpace.
 class TableSpaceImpl
          Default implementation of a DB2 tablespace.
 

Fields in net.sf.jaxme.sqls.db2 declared as TableSpace
 TableSpace DB2SQLFactoryImpl.SYSCATSPACE
          The predefined table space SYSCATSPACE.
 TableSpace DB2SQLFactoryImpl.TEMPSPACE1
          The predefined table space TEMPSPACE1.
 TableSpace DB2SQLFactoryImpl.USERSPACE1
          The predefined table space USERSPACE1.
 

Methods in net.sf.jaxme.sqls.db2 that return TableSpace
 TableSpace DB2TableImpl.getTableSpace()
           
 TableSpace DB2TableImpl.getIndexTableSpace()
           
 TableSpace DB2TableImpl.getLongTableSpace()
           
 TableSpace DB2Table.getTableSpace()
          Returns the TableSpace, in which the table should be created physically.
 TableSpace DB2Table.getIndexTableSpace()
          Returns the TableSpace, in which the tables indexes should be created physically.
 TableSpace DB2Table.getLongTableSpace()
          Returns the TableSpace, in which the tables LOB data should be physically stored.
 TableSpace DB2SQLFactoryImpl.newTableSpace(java.lang.String pName, TableSpace.Type pType)
           
 TableSpace DB2SQLFactoryImpl.newTableSpace(TableSpace.Name pName, TableSpace.Type pType)
           
protected  TableSpace DB2SQLFactoryImpl.newTableSpaceImpl(TableSpace.Name pName, TableSpace.Type pType)
           
 TableSpace DB2SQLFactoryImpl.getTableSpace(TableSpace.Name pName)
           
 TableSpace DB2SQLFactoryImpl.getTableSpace(java.lang.String pName)
           
 TableSpace DB2SQLFactory.newTableSpace(java.lang.String pName, TableSpace.Type pType)
          Creates a new TableSpace with the given name.
 TableSpace DB2SQLFactory.newTableSpace(TableSpace.Name pName, TableSpace.Type pType)
          Creates a new TableSpace with the given name.
 TableSpace DB2SQLFactory.getTableSpace(TableSpace.Name pName)
          Returns the tablespace with the given name or null, if no such tablespace exists.
 TableSpace DB2SQLFactory.getTableSpace(java.lang.String pName)
          Returns the tablespace with the given name or null, if no such tablespace exists.
 

Methods in net.sf.jaxme.sqls.db2 with parameters of type TableSpace
 void DB2TableImpl.setTableSpace(TableSpace pTableSpace)
           
 void DB2TableImpl.setIndexTableSpace(TableSpace pTableSpace)
           
 void DB2TableImpl.setLongTableSpace(TableSpace pTableSpace)
           
 void DB2Table.setTableSpace(TableSpace pTableSpace)
          Sets the TableSpace, in which the table should be created physically.
 void DB2Table.setIndexTableSpace(TableSpace pTableSpace)
          Sets the TableSpace, in which the tables indexes should be created physically.
 void DB2Table.setLongTableSpace(TableSpace pTableSpace)
          Sets the TableSpace, in which the tables indexes should be created physically.
 java.util.Collection DB2SQLGeneratorImpl.getCreate(TableSpace pTableSpace)
           
 java.util.Collection DB2SQLGeneratorImpl.getDrop(TableSpace pTableSpace)
           
 java.util.Collection DB2SQLGenerator.getCreate(TableSpace pTableSpace)
          Returns an SQL statement creating the given TableSpace.
 java.util.Collection DB2SQLGenerator.getDrop(TableSpace pTableSpace)
          Returns an SQL statement dropping the given TableSpace.