Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes. |
Modifier and Type | Method and Description |
---|---|
Queries |
Parser.parse(String sql)
Parse a SQL string to a set of queries.
|
Queries |
Parser.parse(String sql,
Object... bindings)
Parse a SQL string with bind variables to a set of queries.
|
Condition |
Parser.parseCondition(String sql)
Parse a SQL string to a condition.
|
Condition |
Parser.parseCondition(String sql,
Object... bindings)
Parse a SQL string with bind variables to a condition.
|
Field<?> |
Parser.parseField(String sql)
Parse a SQL string to a field.
|
Field<?> |
Parser.parseField(String sql,
Object... bindings)
Parse a SQL string with bind variables to a field.
|
Name |
Parser.parseName(String sql)
Parse a SQL string to a name.
|
Name |
Parser.parseName(String sql,
Object... bindings)
Parse a SQL string with bind variables to a name.
|
Query |
Parser.parseQuery(String sql)
Parse a SQL string to a query.
|
Query |
Parser.parseQuery(String sql,
Object... bindings)
Parse a SQL string with bind variables to a query.
|
ResultQuery<?> |
Parser.parseResultQuery(String sql)
Parse a SQL string to a result query.
|
ResultQuery<?> |
Parser.parseResultQuery(String sql,
Object... bindings)
Parse a SQL string with bind variables to a result query.
|
Row |
Parser.parseRow(String sql)
Parse a SQL string to a row.
|
Row |
Parser.parseRow(String sql,
Object... bindings)
Parse a SQL string with bind variables to a row.
|
Select<?> |
Parser.parseSelect(String sql)
Parse a SQL string to a select statement.
|
Select<?> |
Parser.parseSelect(String sql,
Object... bindings)
Parse a SQL string to a select statement.
|
Table<?> |
Parser.parseTable(String sql)
Parse a SQL string to a table.
|
Table<?> |
Parser.parseTable(String sql,
Object... bindings)
Parse a SQL string with bind variables to a table.
|
Modifier and Type | Method and Description |
---|---|
ParserException |
ParserException.column(int c)
Set the
column() . |
ParserException |
ParserException.line(int l)
Set the
line() . |
ParserException |
ParserException.position(int p)
Set the
position() . |
Copyright © 2019. All rights reserved.