Uses of Interface
org.jooq.Block
-
Packages that use Block Package Description org.jooq This package contains jOOQ's public API.org.jooq.impl This package contains jOOQ's implementation classes. -
-
Uses of Block in org.jooq
Methods in org.jooq that return Block Modifier and Type Method Description @NotNull Block
DSLContext. begin(Collection<? extends Statement> statements)
Wrap a collection of statements in an anoymous procedural block.@NotNull Block
DSLContext. begin(Statement... statements)
Wrap a collection of statements in an anonymous procedural block.@NotNull Block
Queries. block()
The wrapped collection of queries as aBlock
.@NotNull Block
Parser. parseStatements(String sql)
Parse a SQL string to a set of procedural statements.@NotNull Block
Parser. parseStatements(String sql, Object... bindings)
Parse a SQL string with bind variables to a set of procedural statements.@NotNull Block
DSLContext. statements(Collection<? extends Statement> statements)
Wrap a collection of statements in an anonymous procedural block that does not wrap inBEGIN ..
@NotNull Block
DSLContext. statements(Statement... statements)
Wrap a collection of statements in an anonymous procedural block that does not wrap inBEGIN ..
-
Uses of Block in org.jooq.impl
Methods in org.jooq.impl that return Block Modifier and Type Method Description Block
DefaultDSLContext. begin(Collection<? extends Statement> statements)
Block
DefaultDSLContext. begin(Statement... statements)
static @NotNull Block
DSL. begin(Collection<? extends Statement> statements)
Wrap a collection of statements in an anonymous procedural block.static @NotNull Block
DSL. begin(Statement... statements)
Wrap a collection of statements in an anonymous procedural block.Block
DefaultDSLContext. statements(Collection<? extends Statement> statements)
Block
DefaultDSLContext. statements(Statement... statements)
static @NotNull Block
DSL. statements(Collection<? extends Statement> statements)
Wrap a collection of statements in an anonymous procedural block that does not wrap inBEGIN ..
static @NotNull Block
DSL. statements(Statement... statements)
Wrap a collection of statements in an anonymous procedural block that does not wrap inBEGIN ..
-