Uses of Class
org.hibernate.type.descriptor.jdbc.BasicExtractor
-
Packages that use BasicExtractor Package Description org.hibernate.dialect This package abstracts over the multifarious dialects of SQL understood by the databases supported by Hibernate.org.hibernate.spatial.dialect.oracle org.hibernate.type.descriptor.jdbc Defines handling of almost the full range of standard JDBC-defined SQL data types.org.hibernate.type.descriptor.jdbc.internal -
-
Uses of BasicExtractor in org.hibernate.dialect
Subclasses of BasicExtractor in org.hibernate.dialect Modifier and Type Class Description class
DB2GetObjectExtractor<T>
Variant of theGetObjectExtractor
that catches aNullPointerException
, because the DB2 JDBC driver runs into that exception when trying to access anull
value with thegetObject(int, Class)
andgetObject(String, Class)
methods. -
Uses of BasicExtractor in org.hibernate.spatial.dialect.oracle
Subclasses of BasicExtractor in org.hibernate.spatial.dialect.oracle Modifier and Type Class Description class
SDOGeometryValueExtractor<X>
ValueExtractor for SDO_GEOMETRY -
Uses of BasicExtractor in org.hibernate.type.descriptor.jdbc
Methods in org.hibernate.type.descriptor.jdbc with parameters of type BasicExtractor Modifier and Type Method Description protected <X> X
ArrayJdbcType. getArray(BasicExtractor<X> extractor, Array array, WrapperOptions options)
-
Uses of BasicExtractor in org.hibernate.type.descriptor.jdbc.internal
Subclasses of BasicExtractor in org.hibernate.type.descriptor.jdbc.internal Modifier and Type Class Description class
GetObjectExtractor<T>
Support for extracting values directly through `getObject` JDBC driver calls.
-