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 voidDiagnosticsListener. duplicateStatements(DiagnosticsContext ctx)The executed JDBC statement has duplicates.voidDiagnosticsListener. missingWasNullCall(DiagnosticsContext ctx)The fetched JDBCResultSetreturned a primitive type value for a column, which could have been null, butResultSet.wasNull()was not called.voidDiagnosticsListener. repeatedStatements(DiagnosticsContext ctx)The executed JDBC statement is repeated consecutively on the same JDBCConnection.voidDiagnosticsListener. tooManyColumnsFetched(DiagnosticsContext ctx)The fetched JDBCResultSetreturned more columns than necessary.voidDiagnosticsListener. tooManyRowsFetched(DiagnosticsContext ctx)The fetched JDBCResultSetreturned more rows than necessary.voidDiagnosticsListener. unnecessaryWasNullCall(DiagnosticsContext ctx)The fetched JDBCResultSetreturned 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 voidDefaultDiagnosticsListener. duplicateStatements(DiagnosticsContext ctx)voidDefaultDiagnosticsListener. missingWasNullCall(DiagnosticsContext ctx)voidDefaultDiagnosticsListener. repeatedStatements(DiagnosticsContext ctx)voidDefaultDiagnosticsListener. tooManyColumnsFetched(DiagnosticsContext ctx)voidDefaultDiagnosticsListener. tooManyRowsFetched(DiagnosticsContext ctx)voidDefaultDiagnosticsListener. unnecessaryWasNullCall(DiagnosticsContext ctx)
-