Uses of Interface
org.jooq.Block
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
-
Uses of Block in org.jooq
Modifier and TypeMethodDescription@NotNull Block
DSLContext.begin
(Collection<? extends Statement> statements) Wrap a collection of statements in an anoymous procedural block.@NotNull Block
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 … END;
, unless explicitly needed.@NotNull Block
DSLContext.statements
(Statement... statements) Wrap a collection of statements in an anonymous procedural block that does not wrap inBEGIN … END;
, unless explicitly needed. -
Uses of Block in org.jooq.impl
Modifier and TypeMethodDescriptionDefaultDSLContext.begin
(Collection<? extends Statement> statements) static @NotNull Block
DSL.begin
(Collection<? extends Statement> statements) Wrap a collection of statements in an anonymous procedural block.static @NotNull Block
Wrap a collection of statements in an anonymous procedural block.DefaultDSLContext.statements
(Collection<? extends Statement> statements) 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 … END;
, unless explicitly needed.static @NotNull Block
DSL.statements
(Statement... statements) Wrap a collection of statements in an anonymous procedural block that does not wrap inBEGIN … END;
, unless explicitly needed.