public interface SQLDetailedListener extends SQLListener
Modifier and Type | Method and Description |
---|---|
void |
end(SQLListenerContext context)
Called at the end of a query.
|
void |
exception(SQLListenerContext context)
Called if an exception happens during query building and execution.
|
void |
executed(SQLListenerContext context)
Called at the end of
PreparedStatement execution. |
void |
preExecute(SQLListenerContext context)
Called at the start of
PreparedStatement execution. |
void |
prepared(SQLListenerContext context)
Called at the end of
PreparedStatement preparation. |
void |
prePrepare(SQLListenerContext context)
Called at the start of
PreparedStatement preparation. |
void |
preRender(SQLListenerContext context)
Called at the start of SQL rendering.
|
void |
rendered(SQLListenerContext context)
Called at the end of SQL rendering.
|
void |
start(SQLListenerContext context)
Called at the start of a query.
|
notifyDelete, notifyDeletes, notifyInsert, notifyInserts, notifyMerge, notifyMerges, notifyQuery, notifyUpdate, notifyUpdates
void start(SQLListenerContext context)
context
- a context object that is progressively filled out as the query executesvoid preRender(SQLListenerContext context)
context
- a context object that is progressively filled out as the query executesvoid rendered(SQLListenerContext context)
context
- a context object that is progressively filled out as the query executesvoid prePrepare(SQLListenerContext context)
PreparedStatement
preparation.context
- a context object that is progressively filled out as the query executesvoid prepared(SQLListenerContext context)
PreparedStatement
preparation.context
- a context object that is progressively filled out as the query executesvoid preExecute(SQLListenerContext context)
PreparedStatement
execution.context
- a context object that is progressively filled out as the query executesvoid executed(SQLListenerContext context)
PreparedStatement
execution.context
- a context object that is progressively filled out as the query executesvoid exception(SQLListenerContext context)
context
- a context object that is progressively filled out as the query executesvoid end(SQLListenerContext context)
context
- a context object that is progressively filled out as the query executesCopyright © 2007–2016 Querydsl. All rights reserved.