Uses of Interface
org.jooq.DiagnosticsContext
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
-
Uses of DiagnosticsContext in org.jooq
Modifier and TypeMethodDescriptiondefault void
DiagnosticsListener.concatenationInPredicate
(DiagnosticsContext ctx) String concatenation was encountered in predicates.default void
DiagnosticsListener.consecutiveAggregation
(DiagnosticsContext ctx) Similar JDBC statements are repeated consecutively with differing aggregation.default 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.nullCondition
(DiagnosticsContext ctx) ANULL
condition was encountered, which is almost always a mistake.default void
DiagnosticsListener.possiblyWrongExpression
(DiagnosticsContext ctx) A possibly wrong expression was encountered.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.transformPattern
(DiagnosticsContext ctx) ASettings.isTransformPatterns()
pattern has been matched.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). -
Uses of DiagnosticsContext in org.jooq.impl
Modifier and TypeMethodDescriptionvoid
LoggingDiagnosticsListener.concatenationInPredicate
(DiagnosticsContext ctx) void
LoggingDiagnosticsListener.consecutiveAggregation
(DiagnosticsContext ctx) void
LoggingDiagnosticsListener.duplicateStatements
(DiagnosticsContext ctx) void
LoggingDiagnosticsListener.nullCondition
(DiagnosticsContext ctx) void
LoggingDiagnosticsListener.possiblyWrongExpression
(DiagnosticsContext ctx) void
LoggingDiagnosticsListener.repeatedStatements
(DiagnosticsContext ctx) void
LoggingDiagnosticsListener.tooManyColumnsFetched
(DiagnosticsContext ctx) void
LoggingDiagnosticsListener.tooManyRowsFetched
(DiagnosticsContext ctx) void
LoggingDiagnosticsListener.transformPattern
(DiagnosticsContext ctx) void
LoggingDiagnosticsListener.trivialCondition
(DiagnosticsContext ctx)