Class LongVarbinaryJdbcType
java.lang.Object
org.hibernate.type.descriptor.jdbc.VarbinaryJdbcType
org.hibernate.type.descriptor.jdbc.LongVarbinaryJdbcType
- All Implemented Interfaces:
Serializable, AdjustableJdbcType, JdbcType
Descriptor for
LONGVARBINARY handling.- See Also:
-
Field Summary
FieldsFields inherited from class VarbinaryJdbcType
INSTANCE_WITHOUT_LITERALS -
Constructor Summary
ConstructorsConstructorDescriptionLongVarbinaryJdbcType(int defaultSqlTypeCode) LongVarbinaryJdbcType(int defaultSqlTypeCode, int ddlTypeCode) -
Method Summary
Modifier and TypeMethodDescriptionintA JDBC type code that identifies the SQL column type used for schema generation.intA JDBC type code that identifies the SQL column type.intThe JDBC type code used when interacting with JDBC APIs.toString()Methods inherited from class VarbinaryJdbcType
getBinder, getExtractor, getFriendlyName, getJdbcLiteralFormatter, getPreferredJavaTypeClass, getRecommendedJavaType, resolveIndicatedType, shouldUseMaterializedLobMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface JdbcType
addAuxiliaryDatabaseObjects, appendWriteExpression, appendWriteExpression, castFromPattern, castToPattern, getCastType, getCheckCondition, getExtraCreateTableInfo, getJdbcRecommendedJavaTypeMapping, hasDatePart, hasTimePart, isArray, isBinary, isBoolean, isComparable, isDecimal, isDuration, isFloat, isImplicitJson, isImplicitXml, isInteger, isInterval, isJson, isLob, isLobOrLong, isNationalized, isNumber, isSmallInteger, isSpatial, isString, isStringLike, isStringLikeExcludingClob, isTemporal, isWriteExpressionTyped, isXml, registerOutParameter, registerOutParameter, wrapTopLevelSelectionExpression, wrapWriteExpression, wrapWriteExpression
-
Field Details
-
INSTANCE
-
-
Constructor Details
-
LongVarbinaryJdbcType
public LongVarbinaryJdbcType() -
LongVarbinaryJdbcType
public LongVarbinaryJdbcType(int defaultSqlTypeCode) -
LongVarbinaryJdbcType
public LongVarbinaryJdbcType(int defaultSqlTypeCode, int ddlTypeCode)
-
-
Method Details
-
toString
- Overrides:
toStringin classVarbinaryJdbcType
-
getJdbcTypeCode
public int getJdbcTypeCode()Description copied from interface:JdbcTypeThe JDBC type code used when interacting with JDBC APIs.For example, it's used when calling
PreparedStatement.setNull(int, int).- Specified by:
getJdbcTypeCodein interfaceJdbcType- Overrides:
getJdbcTypeCodein classVarbinaryJdbcType- Returns:
- a JDBC type code
-
getDdlTypeCode
public int getDdlTypeCode()Description copied from interface:JdbcTypeA JDBC type code that identifies the SQL column type used for schema generation.This value is passed to
DdlTypeRegistry.getTypeName(int, Size, Type)to obtain the SQL column type.- Returns:
- a JDBC type code
-
getDefaultSqlTypeCode
public int getDefaultSqlTypeCode()Description copied from interface:JdbcTypeA JDBC type code that identifies the SQL column type.This value might be different from
JdbcType.getDdlTypeCode()if the actual type e.g. JSON is emulated through a type like CLOB.- Returns:
- a JDBC type code
-