public class SchemaImpl extends Object implements Schema
This type is for JOOQ INTERNAL USE only. Do not reference directly
Constructor and Description |
---|
SchemaImpl(String name) |
Modifier and Type | Method and Description |
---|---|
void |
bind(BindContext context)
Bind all parameters of this
QueryPart to a PreparedStatement
This method is for JOOQ INTERNAL USE only. |
Clause[] |
clauses(Context<?> ctx)
The
Clause s that are represented by this query part. |
protected DSLContext |
create()
Internal convenience method
|
protected DSLContext |
create(BindContext ctx)
Internal convenience method
|
protected DSLContext |
create(Configuration configuration)
Internal convenience method
|
protected DSLContext |
create(RenderContext ctx)
Internal convenience method
|
boolean |
declaresFields()
Subclasses may override this
|
boolean |
declaresTables()
Subclasses may override this
|
boolean |
declaresWindows()
Subclasses may override this
|
boolean |
equals(Object that)
Check whether this
QueryPart can be considered equal to
another QueryPart . |
String |
getName()
The name of this schema
|
Sequence<?> |
getSequence(String name)
Get a sequence by its name (case-sensitive) in this schema, or
null if no such sequence exists |
List<Sequence<?>> |
getSequences()
List all sequences contained in this schema
|
Table<?> |
getTable(String name)
Get a table by its name (case-sensitive) in this schema, or
null if no such table exists |
List<Table<?>> |
getTables()
List all tables contained in this schema
|
UDT<?> |
getUDT(String name)
Get a UDT by its name (case-sensitive) in this schema, or
null if no such UDT exists |
List<UDT<?>> |
getUDTs()
List all UDTs contained in this schema
|
int |
hashCode()
Generate a hash code from this
QueryPart . |
void |
toSQL(RenderContext context)
Render this
QueryPart to a SQL string contained in
context.sql() . |
String |
toString()
Render a SQL string of this
QueryPart
For improved debugging, this renders a SQL string of this
QueryPart with inlined bind variables. |
protected DataAccessException |
translate(String sql,
SQLException e)
Internal convenience method
|
public SchemaImpl(String name)
public final String getName()
Schema
public final void toSQL(RenderContext context)
QueryPartInternal
QueryPart
to a SQL string contained in
context.sql()
. The context
will contain
additional information about how to render this QueryPart
,
e.g. whether this QueryPart
should be rendered as a
declaration or reference, whether this QueryPart
's contained
bind variables should be inlined or replaced by '?'
, etc.toSQL
in interface QueryPartInternal
public final void bind(BindContext context)
QueryPartInternal
QueryPart
to a PreparedStatement
This method is for JOOQ INTERNAL USE only. Do not reference directly
bind
in interface QueryPartInternal
context
- The context holding the next bind index and other information
for variable bindingpublic final Clause[] clauses(Context<?> ctx)
QueryPartInternal
Clause
s that are represented by this query part.
QueryPart
s can specify several Clause
s for which an
event will be emitted before
(in forward
order) and after
(in reverse order) visiting
the the query part through Context.visit(QueryPart)
This method is for JOOQ INTERNAL USE only. Do not reference directly
clauses
in interface QueryPartInternal
Clause
s represented by this query part or
null
or an empty array if this query part does not
represent a clause.public final Table<?> getTable(String name)
Schema
null
if no such table existspublic final UDT<?> getUDT(String name)
Schema
null
if no such UDT existspublic final Sequence<?> getSequence(String name)
Schema
null
if no such sequence existsgetSequence
in interface Schema
public List<Table<?>> getTables()
Subclasses should override this method
public List<UDT<?>> getUDTs()
Subclasses should override this method
public List<Sequence<?>> getSequences()
Subclasses should override this method
getSequences
in interface Schema
public int hashCode()
QueryPart
QueryPart
.
In general, QueryPart
hash codes are the same as the hash
codes generated from QueryPart.toString()
. This guarantees consistent
behaviour with QueryPart.equals(Object)
Some QueryPart
implementations may choose to override this
behaviour for improved performance, as QueryPart.toString()
is an
expensive operation, if called many times.
public boolean equals(Object that)
QueryPart
QueryPart
can be considered equal to
another QueryPart
.
In general, QueryPart
equality is defined in terms of
QueryPart.toString()
equality. In other words, two query parts are
considered equal if their rendered SQL (with inlined bind variables) is
equal. This means that the two query parts do not necessarily have to be
of the same type.
Some QueryPart
implementations may choose to override this
behaviour for improved performance, as QueryPart.toString()
is an
expensive operation, if called many times.
public boolean declaresFields()
declaresFields
in interface QueryPartInternal
public boolean declaresTables()
declaresTables
in interface QueryPartInternal
public boolean declaresWindows()
declaresWindows
in interface QueryPartInternal
public String toString()
QueryPart
QueryPart
For improved debugging, this renders a SQL string of this
QueryPart
with inlined bind variables. If you wish to gain
more control over the concrete SQL rendering of this
QueryPart
, use DSLContext.renderContext()
to obtain a
configurable render context for SQL rendering.
protected final DSLContext create()
protected final DSLContext create(Configuration configuration)
protected final DSLContext create(RenderContext ctx)
protected final DSLContext create(BindContext ctx)
protected final DataAccessException translate(String sql, SQLException e)
Copyright © 2014. All Rights Reserved.