public interface SqlResultHandler
context.setSqlResultHandler(new SqlResultHandler() {
public void handle(SqlResultInfo info) {
// You can get your SQL result information here.
}
});
| 修飾子とタイプ | メソッドと説明 |
|---|---|
void |
handle(SqlResultInfo info)
Handle the SQL result.
|
void handle(SqlResultInfo info)
[SqlResultInfo] o result : The result (mapped object) of executed SQL. (NullAllowed) o sqlLogInfo : The information of SQL log, which has executedSql, arguments, displaySql... (NotNull) o executionTimeInfo : The information of execution time. (NotNull) o cause : The failure cause when the command failed. (NullAllowed)
info - The information of executed SQL result. (NotNull)Copyright © 2014–2015 The DBFlute Project. All rights reserved.