Uses of Interface
org.jooq.DiagnosticsContext
-
Packages that use DiagnosticsContext Package Description org.jooq This package contains jOOQ's public API.org.jooq.impl This package contains jOOQ's implementation classes. -
-
Uses of DiagnosticsContext in org.jooq
Methods in org.jooq with parameters of type DiagnosticsContext Modifier and Type Method Description void
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
Methods in org.jooq.impl with parameters of type DiagnosticsContext Modifier and Type Method Description void
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)
-