Package | Description |
---|---|
com.p6spy.engine.common | |
com.p6spy.engine.event | |
com.p6spy.engine.logging | |
com.p6spy.engine.outage | |
com.p6spy.engine.wrapper |
Modifier and Type | Class and Description |
---|---|
class |
CallableStatementInformation
Stores information about the callable statement and bind variables.
|
class |
PreparedStatementInformation
Stores information about the prepared statement and bind variables.
|
Modifier and Type | Method and Description |
---|---|
StatementInformation |
ResultSetInformation.getStatementInformation() |
Constructor and Description |
---|
ResultSetInformation(StatementInformation statementInformation) |
Modifier and Type | Method and Description |
---|---|
void |
SimpleJdbcEventListener.onAfterAddBatch(StatementInformation statementInformation,
long timeElapsedNanos,
String sql,
SQLException e) |
void |
JdbcEventListener.onAfterAddBatch(StatementInformation statementInformation,
long timeElapsedNanos,
String sql,
SQLException e)
This callback method is executed after the
Statement.addBatch(String) or
Statement.addBatch(String) method is invoked. |
void |
DefaultEventListener.onAfterAddBatch(StatementInformation statementInformation,
long timeElapsedNanos,
String sql,
SQLException e) |
void |
CompoundJdbcEventListener.onAfterAddBatch(StatementInformation statementInformation,
long timeElapsedNanos,
String sql,
SQLException e) |
void |
SimpleJdbcEventListener.onAfterAnyAddBatch(StatementInformation statementInformation,
long timeElapsedNanos,
SQLException e)
This callback method is executed before any
Statement .addBatch* method is invoked |
void |
SimpleJdbcEventListener.onAfterAnyExecute(StatementInformation statementInformation,
long timeElapsedNanos,
SQLException e)
This callback method is executed after any
Statement .execute* method is invoked |
void |
SimpleJdbcEventListener.onAfterExecute(StatementInformation statementInformation,
long timeElapsedNanos,
String sql,
SQLException e) |
void |
JdbcEventListener.onAfterExecute(StatementInformation statementInformation,
long timeElapsedNanos,
String sql,
SQLException e)
This callback method is executed after any the
Statement.execute(String) methods are invoked. |
void |
DefaultEventListener.onAfterExecute(StatementInformation statementInformation,
long timeElapsedNanos,
String sql,
SQLException e) |
void |
CompoundJdbcEventListener.onAfterExecute(StatementInformation statementInformation,
long timeElapsedNanos,
String sql,
SQLException e) |
void |
SimpleJdbcEventListener.onAfterExecuteBatch(StatementInformation statementInformation,
long timeElapsedNanos,
int[] updateCounts,
SQLException e) |
void |
JdbcEventListener.onAfterExecuteBatch(StatementInformation statementInformation,
long timeElapsedNanos,
int[] updateCounts,
SQLException e)
This callback method is executed after the
Statement.executeBatch() method is invoked. |
void |
DefaultEventListener.onAfterExecuteBatch(StatementInformation statementInformation,
long timeElapsedNanos,
int[] updateCounts,
SQLException e) |
void |
CompoundJdbcEventListener.onAfterExecuteBatch(StatementInformation statementInformation,
long timeElapsedNanos,
int[] updateCounts,
SQLException e) |
void |
SimpleJdbcEventListener.onAfterExecuteQuery(StatementInformation statementInformation,
long timeElapsedNanos,
String sql,
SQLException e) |
void |
JdbcEventListener.onAfterExecuteQuery(StatementInformation statementInformation,
long timeElapsedNanos,
String sql,
SQLException e)
This callback method is executed after the
Statement.executeQuery(String) method is invoked. |
void |
DefaultEventListener.onAfterExecuteQuery(StatementInformation statementInformation,
long timeElapsedNanos,
String sql,
SQLException e) |
void |
CompoundJdbcEventListener.onAfterExecuteQuery(StatementInformation statementInformation,
long timeElapsedNanos,
String sql,
SQLException e) |
void |
SimpleJdbcEventListener.onAfterExecuteUpdate(StatementInformation statementInformation,
long timeElapsedNanos,
String sql,
int rowCount,
SQLException e) |
void |
JdbcEventListener.onAfterExecuteUpdate(StatementInformation statementInformation,
long timeElapsedNanos,
String sql,
int rowCount,
SQLException e)
This callback method is executed after any of the
Statement.executeUpdate(String) methods are invoked. |
void |
DefaultEventListener.onAfterExecuteUpdate(StatementInformation statementInformation,
long timeElapsedNanos,
String sql,
int rowCount,
SQLException e) |
void |
CompoundJdbcEventListener.onAfterExecuteUpdate(StatementInformation statementInformation,
long timeElapsedNanos,
String sql,
int rowCount,
SQLException e) |
void |
JdbcEventListener.onAfterGetResultSet(StatementInformation statementInformation,
long timeElapsedNanos,
SQLException e)
This callback method is executed after the
Statement.getResultSet() method is invoked. |
void |
DefaultEventListener.onAfterGetResultSet(StatementInformation statementInformation,
long timeElapsedNanos,
SQLException e) |
void |
CompoundJdbcEventListener.onAfterGetResultSet(StatementInformation statementInformation,
long timeElapsedNanos,
SQLException e) |
void |
SimpleJdbcEventListener.onBeforeAddBatch(StatementInformation statementInformation,
String sql) |
void |
JdbcEventListener.onBeforeAddBatch(StatementInformation statementInformation,
String sql)
This callback method is executed before the
Statement.addBatch(String) or
Statement.addBatch(String) method is invoked. |
void |
CompoundJdbcEventListener.onBeforeAddBatch(StatementInformation statementInformation,
String sql) |
void |
SimpleJdbcEventListener.onBeforeAnyAddBatch(StatementInformation statementInformation)
This callback method is executed before any
Statement .addBatch* method is invoked |
void |
SimpleJdbcEventListener.onBeforeAnyExecute(StatementInformation statementInformation)
This callback method is executed before any
Statement .execute* method is invoked |
void |
SimpleJdbcEventListener.onBeforeExecute(StatementInformation statementInformation,
String sql) |
void |
JdbcEventListener.onBeforeExecute(StatementInformation statementInformation,
String sql)
This callback method is executed before any of the
Statement.execute(String) methods are invoked. |
void |
CompoundJdbcEventListener.onBeforeExecute(StatementInformation statementInformation,
String sql) |
void |
SimpleJdbcEventListener.onBeforeExecuteBatch(StatementInformation statementInformation) |
void |
JdbcEventListener.onBeforeExecuteBatch(StatementInformation statementInformation)
This callback method is executed before the
Statement.executeBatch() method is invoked. |
void |
CompoundJdbcEventListener.onBeforeExecuteBatch(StatementInformation statementInformation) |
void |
SimpleJdbcEventListener.onBeforeExecuteQuery(StatementInformation statementInformation,
String sql) |
void |
JdbcEventListener.onBeforeExecuteQuery(StatementInformation statementInformation,
String sql)
This callback method is executed before the
Statement.executeQuery(String) method is invoked. |
void |
CompoundJdbcEventListener.onBeforeExecuteQuery(StatementInformation statementInformation,
String sql) |
void |
SimpleJdbcEventListener.onBeforeExecuteUpdate(StatementInformation statementInformation,
String sql) |
void |
JdbcEventListener.onBeforeExecuteUpdate(StatementInformation statementInformation,
String sql)
This callback method is executed before any of the
Statement.executeUpdate(String) methods are invoked. |
void |
CompoundJdbcEventListener.onBeforeExecuteUpdate(StatementInformation statementInformation,
String sql) |
Modifier and Type | Method and Description |
---|---|
void |
LoggingEventListener.onAfterAnyAddBatch(StatementInformation statementInformation,
long timeElapsedNanos,
SQLException e) |
void |
LoggingEventListener.onAfterAnyExecute(StatementInformation statementInformation,
long timeElapsedNanos,
SQLException e) |
void |
LoggingEventListener.onAfterExecuteBatch(StatementInformation statementInformation,
long timeElapsedNanos,
int[] updateCounts,
SQLException e) |
void |
LoggingEventListener.onAfterGetResultSet(StatementInformation statementInformation,
long timeElapsedNanos,
SQLException e) |
Modifier and Type | Method and Description |
---|---|
void |
OutageJdbcEventListener.onAfterAnyAddBatch(StatementInformation statementInformation,
long timeElapsedNanos,
SQLException e) |
void |
OutageJdbcEventListener.onAfterAnyExecute(StatementInformation statementInformation,
long timeElapsedNanos,
SQLException e) |
void |
OutageJdbcEventListener.onBeforeAnyAddBatch(StatementInformation statementInformation) |
void |
OutageJdbcEventListener.onBeforeAnyExecute(StatementInformation statementInformation) |
Modifier and Type | Method and Description |
---|---|
static Statement |
StatementWrapper.wrap(Statement delegate,
StatementInformation statementInformation,
JdbcEventListener eventListener) |
Constructor and Description |
---|
StatementWrapper(Statement delegate,
StatementInformation statementInformation,
JdbcEventListener eventListener) |
Copyright © 2002-2016 P6Spy. All Rights Reserved.