Uses of Interface
net.sf.jaxme.sqls.Schema

Packages that use Schema
net.sf.jaxme.js.junit   
net.sf.jaxme.sqls   
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.  
net.sf.jaxme.sqls.hsqldb HsqlDb support for the SQL generator This package contains some classes and interfaces enhancing the SQL generator with HsqlDb specific features.  
net.sf.jaxme.sqls.impl   
 

Uses of Schema in net.sf.jaxme.js.junit
 

Methods in net.sf.jaxme.js.junit that return Schema
protected  Schema VersionTest.getSchema()
           
 

Uses of Schema in net.sf.jaxme.sqls
 

Methods in net.sf.jaxme.sqls that return Schema
 Schema Table.getSchema()
          Returns the table schema.
 Schema SQLFactory.newSchema(java.lang.String pName)
          Creates a new Schema with the given name.
 Schema SQLFactory.newSchema(Schema.Name pName)
          Creates a new Schema with the given name.
 Schema SQLFactory.getDefaultSchema()
          Returns the Default schema.
 Schema SQLFactory.getSchema(Schema.Name pName)
          Returns the schema with the given name or null, if no such schema exists.
 Schema SQLFactory.getSchema(java.lang.String pName)
          Returns the schema with the given name or null, if no such schema exists.
 Schema SQLFactory.getSchema(java.sql.Connection pConnection, Schema.Name pName)
          Reads the schema named pName from the database.
 Schema SQLFactory.getSchema(java.sql.Connection pConnection, java.lang.String pName)
          Reads the schema named pName from the database.
 

Methods in net.sf.jaxme.sqls with parameters of type Schema
 java.util.Collection SQLGenerator.getCreate(Schema pSchema)
          Generates a CREATE SCHEMA statement.
 java.util.Collection SQLGenerator.getCreate(Schema pSchema, boolean pAll)
          Generates CREATE statements for the schema.
 java.util.Collection SQLGenerator.getDrop(Schema pSchema)
          Generates a DROP SCHEMA statement.
 java.util.Collection SQLGenerator.getDrop(Schema pSchema, boolean pAll)
          Generates DROP statements for the schema.
 

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

Subinterfaces of Schema in net.sf.jaxme.sqls.db2
 interface DB2Schema
          Interface of a schema in a DB2 database.
 

Classes in net.sf.jaxme.sqls.db2 that implement Schema
 class DB2SchemaImpl
          Default implementation of a schema in a DB2 database.
 

Methods in net.sf.jaxme.sqls.db2 that return Schema
 Schema DB2SQLFactoryImpl.newSchemaImpl(Schema.Name pName)
           
 

Methods in net.sf.jaxme.sqls.db2 with parameters of type Schema
 java.util.Collection DB2SQLGeneratorImpl.getDrop(Schema pSchema)
           
 Table DB2SQLFactoryImpl.newTableImpl(Schema pSchema, Table.Name pName)
           
 

Constructors in net.sf.jaxme.sqls.db2 with parameters of type Schema
DB2TableImpl(Schema pSchema, Table.Name pName)
           
 

Uses of Schema in net.sf.jaxme.sqls.hsqldb
 

Subinterfaces of Schema in net.sf.jaxme.sqls.hsqldb
 interface HsqlDbSchema
          Interface of a schema in a HsqlDb database.
 

Classes in net.sf.jaxme.sqls.hsqldb that implement Schema
 class HsqlDbSchemaImpl
          Default implementation of a schema in a HsqlDb database.
 

Methods in net.sf.jaxme.sqls.hsqldb that return Schema
 Schema HsqlDbSQLFactoryImpl.newSchemaImpl(Schema.Name pName)
           
 

Methods in net.sf.jaxme.sqls.hsqldb with parameters of type Schema
 Table HsqlDbSQLFactoryImpl.newTableImpl(Schema pSchema, Table.Name pName)
           
 

Constructors in net.sf.jaxme.sqls.hsqldb with parameters of type Schema
HsqlDbTableImpl(Schema pSchema, Table.Name pName)
           
 

Uses of Schema in net.sf.jaxme.sqls.impl
 

Classes in net.sf.jaxme.sqls.impl that implement Schema
 class SchemaImpl
          Implementation of a schema.
 

Methods in net.sf.jaxme.sqls.impl that return Schema
 Schema TableImpl.getSchema()
           
 Schema SQLFactoryImpl.newSchema(java.lang.String pName)
           
 Schema SQLFactoryImpl.newSchema(Schema.Name pName)
           
 Schema SQLFactoryImpl.getDefaultSchema()
           
 Schema SQLFactoryImpl.getSchema(java.lang.String pName)
           
 Schema SQLFactoryImpl.getSchema(Schema.Name pName)
           
protected  Schema SQLFactoryImpl.newSchemaImpl(Schema.Name pName)
           
 Schema SQLFactoryImpl.getSchema(java.sql.Connection pConn, java.lang.String pName)
           
 Schema SQLFactoryImpl.getSchema(java.sql.Connection pConn, Schema.Name pName)
           
 

Methods in net.sf.jaxme.sqls.impl with parameters of type Schema
 java.util.Collection SQLGeneratorImpl.getCreate(Schema pSchema)
           
 java.util.Collection SQLGeneratorImpl.getDrop(Schema pSchema)
           
 java.util.Collection SQLGeneratorImpl.getCreate(Schema pSchema, boolean pAll)
           
 java.util.Collection SQLGeneratorImpl.getDrop(Schema pSchema, boolean pAll)
           
protected  Table SQLFactoryImpl.newTableImpl(Schema pSchema, Table.Name pName)
           
 

Constructors in net.sf.jaxme.sqls.impl with parameters of type Schema
TableImpl(Schema pSchema, Table.Name pName)