MCPcopy Index your code
hub / github.com/jOOQ/jOOQ / getFields

Method getFields

jOOQ/src/main/java/org/jooq/impl/SelectQueryImpl.java:842–852  ·  view source on GitHub ↗
(ThrowingSupplier<? extends ResultSetMetaData, SQLException> rs)

Source from the content-addressed store, hash-verified

840 }
841
842 @Override
843 public final Field<?>[] getFields(ThrowingSupplier<? extends ResultSetMetaData, SQLException> rs) throws SQLException {
844 Field<?>[] fields = getFields();
845
846 // If no projection was specified explicitly, create fields from result
847 // set meta data instead. This is typically the case for SELECT * ...
848 if (fields.length == 0)
849 return new MetaDataFieldProvider(configuration(), rs.get()).getFields();
850
851 return fields;
852 }
853
854 @Override
855 public final Field<?>[] getFields() {

Callers

nothing calls this directly

Calls 7

getSelectMethod · 0.95
fieldArrayMethod · 0.80
getFieldsMethod · 0.65
configurationMethod · 0.65
getMethod · 0.65
coerceMethod · 0.65
isEmptyMethod · 0.65

Tested by

no test coverage detected