Package org.apache.ibatis.logging.jdbc
Class PreparedStatementLogger
- java.lang.Object
-
- org.apache.ibatis.logging.jdbc.BaseJdbcLogger
-
- org.apache.ibatis.logging.jdbc.PreparedStatementLogger
-
- All Implemented Interfaces:
java.lang.reflect.InvocationHandler
public final class PreparedStatementLogger extends BaseJdbcLogger implements java.lang.reflect.InvocationHandler
PreparedStatement proxy to add logging.- Author:
- Clinton Begin, Eduardo Macarron
-
-
Field Summary
-
Fields inherited from class org.apache.ibatis.logging.jdbc.BaseJdbcLogger
EXECUTE_METHODS, queryStack, SET_METHODS, statementLog
-
-
Method Summary
Modifier and Type Method Description java.sql.PreparedStatement
getPreparedStatement()
Return the wrapped prepared statement.java.lang.Object
invoke(java.lang.Object proxy, java.lang.reflect.Method method, java.lang.Object[] params)
static java.sql.PreparedStatement
newInstance(java.sql.PreparedStatement stmt, Log statementLog, int queryStack)
Creates a logging version of a PreparedStatement.-
Methods inherited from class org.apache.ibatis.logging.jdbc.BaseJdbcLogger
clearColumnInfo, debug, getColumn, getColumnString, getParameterValueString, isDebugEnabled, isTraceEnabled, objectValueString, removeBreakingWhitespace, setColumn, trace
-
-
-
-
Method Detail
-
invoke
public java.lang.Object invoke(java.lang.Object proxy, java.lang.reflect.Method method, java.lang.Object[] params) throws java.lang.Throwable
- Specified by:
invoke
in interfacejava.lang.reflect.InvocationHandler
- Throws:
java.lang.Throwable
-
newInstance
public static java.sql.PreparedStatement newInstance(java.sql.PreparedStatement stmt, Log statementLog, int queryStack)
Creates a logging version of a PreparedStatement.- Parameters:
stmt
- - the statementstatementLog
- - the statement logqueryStack
- - the query stack- Returns:
- - the proxy
-
getPreparedStatement
public java.sql.PreparedStatement getPreparedStatement()
Return the wrapped prepared statement.- Returns:
- the PreparedStatement
-
-