Uses of Interface
org.jooq.DiagnosticsContext
-
Uses of DiagnosticsContext in org.jooq
Modifier and TypeMethodDescriptiondefault void
DiagnosticsListener.duplicateStatements
(DiagnosticsContext ctx) The executed JDBC statement has duplicates.default void
DiagnosticsListener.exception
(DiagnosticsContext ctx) Something went wrong while diagnosing a SQL query.default void
DiagnosticsListener.missingWasNullCall
(DiagnosticsContext ctx) The fetched JDBCResultSet
returned a primitive type value for a column, which could have been null, butResultSet.wasNull()
was not called.default void
DiagnosticsListener.repeatedStatements
(DiagnosticsContext ctx) The executed JDBC statement is repeated consecutively on the same JDBCConnection
.default void
DiagnosticsListener.tooManyColumnsFetched
(DiagnosticsContext ctx) The fetched JDBCResultSet
returned more columns than necessary.default void
DiagnosticsListener.tooManyRowsFetched
(DiagnosticsContext ctx) The fetched JDBCResultSet
returned more rows than necessary.default void
DiagnosticsListener.trivialCondition
(DiagnosticsContext ctx) A trivial condition was encountered, which can be replaced by aNULL
predicate, or even byDSL.trueCondition()
orDSL.falseCondition()
, but it is more likely just a typo.default void
DiagnosticsListener.unnecessaryWasNullCall
(DiagnosticsContext ctx) The fetched JDBCResultSet
returned a value for a column, on whichResultSet.wasNull()
was called unnecessarily (more than once, or for a non-primitive type).