Members
EVENT_STREAM_BATCH
Event name that is emitted when a stream has finished execution for a series of reads or writes included in a batch.
Listeners will receive a single Object[]
argument that contains the raw results returned by each of the dialect SQL read or write executions.
- Source:
EVENT_STREAM_COMMIT
Event name that is emitted when a stream has committed a transaction.
Listeners will receive a single String
argument that contains the transaction ID returned by each of the dialect SQL read or write executions.
- Source:
EVENT_STREAM_RELEASE
Event name that is emitted when a stream has released or closed the connection used by the read or write stream (managed by individual dialect implementations). Listeners will not receive any arguments.
- Source:
EVENT_STREAM_ROLLBACK
Event name that is emitted when a stream has rolled back a transaction.
Listeners will receive a single String
argument that contains the transaction ID returned by each of the dialect SQL read or write executions.
- Source:
EVENT_STREAM_STATEMENT_PREPARED
Event name that is emitted when a stream has prepared a statement.
Listeners will receive a single argument that contains the SQLERExecResults
.
- Source:
EVENT_STREAM_STATEMENT_UPREPARED
Event name that is emitted when a stream has unprepared a statement.
Listeners will receive a single argument that contains the SQLERExecResults
.
- Source:
FUNC_NAME_DIR_REGEXP
RegExp
for removing invalid chars from prepared function directory names
- Source:
FUNC_NAME_FILE_REGEXP
RegExp
for removing invalid chars from prepared function file names
- Source:
FUNC_NAME_SEPARATOR
Separator for prepared function names (also used as the dir/filename replacement)
- Source:
POS_BINDS_REGEXP
RegExp
for capturing named bind parameter names within SQL
- Source: