Uses of Interface
org.jooq.SchemaProvider

Packages that use SchemaProvider
org.jooq   
org.jooq.impl   
 

Uses of SchemaProvider in org.jooq
 

Subinterfaces of SchemaProvider in org.jooq
 interface Package
          A container for stored procedures and functions This is only supported in the SQLDialect.ORACLE dialect
 interface Routine<T>
          A routine is a callable object in your RDBMS.
 interface Table<R extends Record>
          A table to be used in queries
 interface TableOnConditionStep
          An intermediate (optional) type for the construction of a JOIN clause, where the join criteria is added using an ON clause (with a Condition.
 interface Type<R extends Record>
          A type (udt or table) that represents any database row
 interface UDT<R extends UDTRecord<R>>
          UDT definition
 interface UpdatableTable<R extends Record>
          A common interface for tables whose records can be stored back to the database again.
 

Uses of SchemaProvider in org.jooq.impl
 

Classes in org.jooq.impl that implement SchemaProvider
 class AbstractRoutine<T>
          A common base class for stored procedures This type is for JOOQ INTERNAL USE only.
 class CustomTable<R extends TableRecord<R>>
          A base class for custom Table implementations in client code.
 class PackageImpl
          A default implementation for packages (containers of stored procedures and functions) Currently, this is only supported for the SQLDialect.ORACLE dialect.
 class TableImpl<R extends Record>
          A common base type for tables This type is for JOOQ INTERNAL USE only.
 class UDTImpl<R extends UDTRecord<R>>
          A common base type for UDT's This type is for JOOQ INTERNAL USE only.
 class UpdatableTableImpl<R extends Record>
          A table implementation for a table holding a primary key This type is for JOOQ INTERNAL USE only.
 



Copyright © 2012. All Rights Reserved.