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 TypeMethodDescriptionvoid
DiagnosticsListener.duplicateStatements(DiagnosticsContext ctx)
The executed JDBC statement has duplicates.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.void
DiagnosticsListener.repeatedStatements(DiagnosticsContext ctx)
The executed JDBC statement is repeated consecutively on the same JDBCConnection
.void
DiagnosticsListener.tooManyColumnsFetched(DiagnosticsContext ctx)
The fetched JDBCResultSet
returned more columns than necessary.void
DiagnosticsListener.tooManyRowsFetched(DiagnosticsContext ctx)
The fetched JDBCResultSet
returned more rows than necessary.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
DefaultDiagnosticsListener.duplicateStatements(DiagnosticsContext ctx)
void
DefaultDiagnosticsListener.missingWasNullCall(DiagnosticsContext ctx)
void
DefaultDiagnosticsListener.repeatedStatements(DiagnosticsContext ctx)
void
DefaultDiagnosticsListener.tooManyColumnsFetched(DiagnosticsContext ctx)
void
DefaultDiagnosticsListener.tooManyRowsFetched(DiagnosticsContext ctx)
void
DefaultDiagnosticsListener.unnecessaryWasNullCall(DiagnosticsContext ctx)