Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes. |
Modifier and Type | Method and Description |
---|---|
void |
DiagnosticsListener.duplicateStatements(DiagnosticsContext ctx)
The executed JDBC statement has duplicates.
|
void |
DiagnosticsListener.missingWasNullCall(DiagnosticsContext ctx)
The fetched JDBC
ResultSet returned a primitive type value for a
column, which could have been null, but ResultSet.wasNull() was
not called. |
void |
DiagnosticsListener.repeatedStatements(DiagnosticsContext ctx)
The executed JDBC statement is repeated consecutively on the same JDBC
Connection . |
void |
DiagnosticsListener.tooManyColumnsFetched(DiagnosticsContext ctx)
The fetched JDBC
ResultSet returned more columns than necessary. |
void |
DiagnosticsListener.tooManyRowsFetched(DiagnosticsContext ctx)
The fetched JDBC
ResultSet returned more rows than necessary. |
void |
DiagnosticsListener.unnecessaryWasNullCall(DiagnosticsContext ctx)
The fetched JDBC
ResultSet returned a value for a column, on
which ResultSet.wasNull() was called unnecessarily (more than
once, or for a non-primitive type). |
Modifier and Type | Method and 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) |
Copyright © 2019. All rights reserved.