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.
|
Statement |
Parser.parseStatement(String sql) |
Parse a SQL string to a procedural statement.
|
Statement |
Parser.parseStatement(String sql,
Object... bindings) |
Parse a SQL string with bind variables to a procedural statement.
|
Block |
Parser.parseStatements(String sql) |
Parse a SQL string to a set of procedural statements.
|
Block |
Parser.parseStatements(String sql,
Object... bindings) |
Parse a SQL string with bind variables to a set of procedural statements.
|
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.
|