Class R2dbcStatementLog
- java.lang.Object
-
- pro.chenggang.project.reactive.mybatis.support.r2dbc.executor.support.R2dbcStatementLog
-
public class R2dbcStatementLog extends Object
The type Statement log helper. modify according to ConnectionLoggerConnectionLogger- Version:
- 1.0.0
- Author:
- Gang Cheng
-
-
Constructor Summary
Constructors Constructor Description R2dbcStatementLog(org.apache.ibatis.logging.Log statementLog)Instantiates a new Statement log helper.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidlogParameters(List<Object> columnValues)Log parameters.voidlogSql(String sql)Log sql.voidlogTotal(Integer rows)Log total.voidlogUpdates(Integer updateCount)Log updates.
-
-
-
Method Detail
-
logSql
public void logSql(String sql)
Log sql.- Parameters:
sql- the sql
-
logParameters
public void logParameters(List<Object> columnValues)
Log parameters.- Parameters:
columnValues- the column values
-
logUpdates
public void logUpdates(Integer updateCount)
Log updates.- Parameters:
updateCount- the update count
-
logTotal
public void logTotal(Integer rows)
Log total.- Parameters:
rows- the rows
-
-