public interface SqlLogHandler
context.setSqlLogHandler(new SqlLogHandler() {
public void handle(SqlLogInfo info) {
// You can get your SQL string here.
}
});
| 修飾子とタイプ | メソッドと説明 |
|---|---|
void |
handle(SqlLogInfo info)
Handle the SQL log.
|
default boolean |
inheritsExistingHandler()
Does it inherit the existing handler?
|
void handle(SqlLogInfo info)
info - The information of SQL log. (NotNull)default boolean inheritsExistingHandler()
Copyright © 2014–2019 The DBFlute Project. All rights reserved.