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 BlockDSLContext. begin(Collection<? extends Statement> statements)Wrap a collection of statements in an anoymous procedural block.@NotNull BlockDSLContext. begin(Statement... statements)Wrap a collection of statements in an anonymous procedural block.@NotNull BlockQueries. block()The wrapped collection of queries as aBlock.@NotNull BlockParser. parseStatements(String sql)Parse a SQL string to a set of procedural statements.@NotNull BlockParser. parseStatements(String sql, Object... bindings)Parse a SQL string with bind variables to a set of procedural statements.@NotNull BlockDSLContext. statements(Collection<? extends Statement> statements)Wrap a collection of statements in an anonymous procedural block that does not wrap inBEGIN ..@NotNull BlockDSLContext. 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 BlockDefaultDSLContext. begin(Collection<? extends Statement> statements)BlockDefaultDSLContext. begin(Statement... statements)static @NotNull BlockDSL. begin(Collection<? extends Statement> statements)Wrap a collection of statements in an anonymous procedural block.static @NotNull BlockDSL. begin(Statement... statements)Wrap a collection of statements in an anonymous procedural block.BlockDefaultDSLContext. statements(Collection<? extends Statement> statements)BlockDefaultDSLContext. statements(Statement... statements)static @NotNull BlockDSL. statements(Collection<? extends Statement> statements)Wrap a collection of statements in an anonymous procedural block that does not wrap inBEGIN ..static @NotNull BlockDSL. statements(Statement... statements)Wrap a collection of statements in an anonymous procedural block that does not wrap inBEGIN ..
-