- java.lang.Object
-
- org.jooq.tools.jdbc.MockExecuteContext
-
public class MockExecuteContext extends Object
A mock execution context.This context is passed to
MockDataProvider.execute(MockExecuteContext)
, as a context object containing all relevant information about a given query execution.- Author:
- Lukas Eder
- See Also:
MockDataProvider
-
-
Constructor Summary
Constructors Constructor Description MockExecuteContext(String[] sql, Object[][] bindings)
Create a new mock execution context.MockExecuteContext(String[] sql, Object[][] bindings, int autoGeneratedKeys)
Create a new mock execution context.MockExecuteContext(String[] sql, Object[][] bindings, int[] columnIndexes)
Create a new mock execution context.MockExecuteContext(String[] sql, Object[][] bindings, String[] columnNames)
Create a new mock execution context.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
autoGeneratedKeys()
The corresponding value fromMockStatement
.boolean
batch()
Whether this execution context is a from a batch statement.Object[][]
batchBindings()
Get all bind variables of a "single batch" statement.boolean
batchMultiple()
Whether this execution context is from a "multi batch" statement.boolean
batchSingle()
Whether this execution context is from a "single batch" statement.String[]
batchSQL()
Get all batch SQL statements of a "multi batch" statement.Object[]
bindings()
Get the single (or first "single batch") set of bind variables.int[]
columnIndexes()
The corresponding value fromMockStatement
.String[]
columnNames()
The corresponding value fromMockStatement
.int[]
outParameterTypes()
Get the types of registered out parameters, if any.String
sql()
Get the single (or first "multi batch") SQL statement.
-
-
-
Constructor Detail
-
MockExecuteContext
public MockExecuteContext(String[] sql, Object[][] bindings)
Create a new mock execution context.- Parameters:
sql
- The SQL statement(s)bindings
- The bind variable(s)
-
MockExecuteContext
public MockExecuteContext(String[] sql, Object[][] bindings, int autoGeneratedKeys)
Create a new mock execution context.- Parameters:
sql
- The SQL statement(s)bindings
- The bind variable(s)autoGeneratedKeys
- The corresponding value fromMockStatement
-
MockExecuteContext
public MockExecuteContext(String[] sql, Object[][] bindings, int[] columnIndexes)
Create a new mock execution context.- Parameters:
sql
- The SQL statement(s)bindings
- The bind variable(s)columnIndexes
- The corresponding value fromMockStatement
-
-
Method Detail
-
batch
public boolean batch()
Whether this execution context is a from a batch statement.- Returns:
- Whether this execution context is a from a batch statement.
-
batchSingle
public boolean batchSingle()
Whether this execution context is from a "single batch" statement.- Returns:
- Whether this execution context is from a "single batch" statement.
- See Also:
DSLContext.batch(Query)
-
batchMultiple
public boolean batchMultiple()
Whether this execution context is from a "multi batch" statement.- Returns:
- Whether this execution context is from a "multi batch" statement.
- See Also:
DSLContext.batch(Query...)
-
batchSQL
public String[] batchSQL()
Get all batch SQL statements of a "multi batch" statement.- Returns:
- All batch SQL statements of a "multi batch" statement, or an
array of length
1
with the single statement.
-
batchBindings
public Object[][] batchBindings()
Get all bind variables of a "single batch" statement.- Returns:
- All bind variables of a "single batch" statment, or an array of
length
1
with the bind variables of a single statement.
-
sql
public String sql()
Get the single (or first "multi batch") SQL statement.- Returns:
- The single (or first "multi batch") SQL statement.
-
bindings
public Object[] bindings()
Get the single (or first "single batch") set of bind variables.- Returns:
- The single (or first "single batch") set of bind variables.
-
autoGeneratedKeys
public int autoGeneratedKeys()
The corresponding value fromMockStatement
.- Returns:
- The corresponding value from
MockStatement
.
-
columnIndexes
public int[] columnIndexes()
The corresponding value fromMockStatement
.- Returns:
- The corresponding value from
MockStatement
.
-
columnNames
public String[] columnNames()
The corresponding value fromMockStatement
.- Returns:
- The corresponding value from
MockStatement
.
-
outParameterTypes
public int[] outParameterTypes()
Get the types of registered out parameters, if any.- Returns:
- the types of registered out parameters, if any.
-
-