补充提交

This commit is contained in:
wusheng 2016-03-16 15:02:02 +08:00
parent 9aa957c481
commit cc816aa51f
1 changed files with 1 additions and 7 deletions

View File

@ -57,13 +57,7 @@ public class SWConnection implements java.sql.Connection {
} }
public String nativeSQL(String sql) throws SQLException { public String nativeSQL(String sql) throws SQLException {
return ConnectionTracing.execute(realConnection, connectInfo, return realConnection.nativeSQL(sql);
"nativeSQL", sql, new Executable<String>() {
public String exe(java.sql.Connection realConnection,
String sql) throws SQLException {
return realConnection.nativeSQL(sql);
}
});
} }
public void setAutoCommit(boolean autoCommit) throws SQLException { public void setAutoCommit(boolean autoCommit) throws SQLException {