Package org.hibernate.type
Class SerializableToBlobType<T extends Serializable>
- java.lang.Object
-
- org.hibernate.type.SerializableToBlobType<T>
-
- All Implemented Interfaces:
BasicType<T>,Type<T>,Serializable,BasicValuedMapping,Bindable,JdbcMapping,JdbcMappingContainer,MappingModelExpressible,MappingType,SqlExpressible,ValueMapping,BasicDomainType<T>,DomainType<T>,SimpleDomainType<T>,BindableType<T>,OutputableType<T>,ReturnableType<T>,SqmExpressible<T>,BasicType<T>,JavaTypedExpressible,ProcedureParameterExtractionAware<T>,ProcedureParameterNamedBinder<T>,Type,DynamicParameterizedType,ParameterizedType
public class SerializableToBlobType<T extends Serializable> extends Object implements BasicType<T>, ProcedureParameterExtractionAware<T>, ProcedureParameterNamedBinder<T>, DynamicParameterizedType
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.hibernate.metamodel.mapping.Bindable
Bindable.JdbcValuesConsumer
-
Nested classes/interfaces inherited from interface org.hibernate.usertype.DynamicParameterizedType
DynamicParameterizedType.ParameterType
-
Nested classes/interfaces inherited from interface jakarta.persistence.metamodel.Type
Type.PersistenceType
-
-
Field Summary
Fields Modifier and Type Field Description static StringCLASS_NAME-
Fields inherited from interface org.hibernate.usertype.DynamicParameterizedType
ACCESS_TYPE, ENTITY, IS_DYNAMIC, IS_PRIMARY_KEY, PARAMETER_TYPE, PROPERTY, RETURNED_CLASS, XPROPERTY
-
-
Constructor Summary
Constructors Constructor Description SerializableToBlobType()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description Objectassemble(Serializable cached, SharedSessionContractImplementor session, Object owner)Reconstruct the object from its disassembled state.voidbeforeAssemble(Serializable cached, SharedSessionContractImplementor session)Called before assembling a query result set from the query cache, to allow batch fetching of entities missing from the second-level cache.booleancanDoExtraction()Can the given instance of this type actually perform the parameter value extractions?booleancanDoSetting()Can the given instance of this type actually set the parameter value by nameintcompare(Object x, Object y)Perform aComparatorstyle comparison between valuesObjectdeepCopy(Object value, SessionFactoryImplementor factory)Return a deep copy of the persistent state, stopping at entities and at collections.protected TdeepCopy(T value)Serializabledisassemble(Object value, SharedSessionContractImplementor session, Object owner)Return a disassembled representation of the object.Textract(CallableStatement statement, int startIndex, SharedSessionContractImplementor session)Perform the extractionTextract(CallableStatement statement, String paramName, SharedSessionContractImplementor session)Perform the extractionTfromString(CharSequence string)intgetColumnSpan(Mapping mapping)How many columns are used to persist this type.protected SizegetDictatedSize()intgetHashCode(Object x)Get a hash code, consistent with persistence "equality".intgetHashCode(Object x, SessionFactoryImplementor factory)Get a hash code, consistent with persistence "equality".Class<T>getJavaType()JavaType<T>getJavaTypeDescriptor()The descriptor for the Java type represented by this expressible typeJdbcLiteralFormatter<T>getJdbcLiteralFormatter()The strategy for formatting values of this expressible type to a SQL literal.JdbcTypegetJdbcType()Descriptor for the SQL type mapped by this type.ValueBinder<T>getJdbcValueBinder()The strategy for binding values of this expressible type to JDBCPreparedStatements andCallableStatements.ValueExtractor<T>getJdbcValueExtractor()The strategy for extracting values of this expressible type from JDBC ResultSets, CallableStatements, etcprotected MutabilityPlan<T>getMutabilityPlan()StringgetName()Returns the abbreviated name of the type.String[]getRegistrationKeys()Get the names under which this type should be registered in the type registry.Class<?>getReturnedClass()The class handled by this type.int[]getSqlTypeCodes(Mapping mapping)Return the JDBC types codes (perTypes) for the columns mapped by this type.booleanisAnyType()Return true if the implementation is castable toAnyType.booleanisAssociationType()Return true if the implementation is castable toAssociationType.booleanisCollectionType()Return true if the implementation is castable toCollectionType.booleanisComponentType()Return true if the implementation is castable toCompositeType.protected booleanisDirty(Object old, Object current)booleanisDirty(Object old, Object current, boolean[] checkable, SharedSessionContractImplementor session)Should the parent be considered dirty, given both the old and current value?booleanisDirty(Object old, Object current, SharedSessionContractImplementor session)Should the parent be considered dirty, given both the old and current value?booleanisEntityType()Return true if the implementation is castable toEntityType.booleanisEqual(Object one, Object another)Compare two instances of the class mapped by this type for persistence "equality" (equality of persistent state).booleanisEqual(Object x, Object y, SessionFactoryImplementor factory)Compare two instances of the class mapped by this type for persistence "equality" (equality of persistent state).booleanisModified(Object oldHydratedState, Object currentState, boolean[] checkable, SharedSessionContractImplementor session)Has the value been modified compared to the current database state? The difference between this and theType.isDirty(java.lang.Object, java.lang.Object, org.hibernate.engine.spi.SharedSessionContractImplementor)methods is that here we need to account for "partially" built values.booleanisMutable()Are objects of this type mutable.booleanisSame(Object x, Object y)Compare two instances of the class mapped by this type for persistence "equality" (equality of persistent state) taking a shortcut for entity references.protected voidnullSafeSet(CallableStatement st, Object value, String name, WrapperOptions options)voidnullSafeSet(CallableStatement st, T value, String name, SharedSessionContractImplementor session)Bind a value to the JDBC prepared statement, ignoring some columns as dictated by the 'settable' parameter.voidnullSafeSet(PreparedStatement st, Object value, int index, boolean[] settable, SharedSessionContractImplementor session)Bind a value represented by an instance of themapped classto the JDBC prepared statement, ignoring some columns as dictated by the 'settable' parameter.voidnullSafeSet(PreparedStatement st, Object value, int index, SharedSessionContractImplementor session)Bind a value represented by an instance of themapped classto the JDBC prepared statement.protected voidnullSafeSet(PreparedStatement st, T value, int index, WrapperOptions options)protected booleanregisterUnderJavaType()Objectreplace(Object original, Object target, SharedSessionContractImplementor session, Object owner, Map<Object,Object> copyCache)During merge, replace the existing (target) value in the entity we are merging to with a new (original) value from the detached entity we are merging.Objectreplace(Object original, Object target, SharedSessionContractImplementor session, Object owner, Map<Object,Object> copyCache, ForeignKeyDirection foreignKeyDirection)During merge, replace the existing (target) value in the entity we are merging to with a new (original) value from the detached entity we are merging.voidsetJavaTypeDescriptor(JavaType<T> javaType)Deprecated.voidsetParameterValues(Properties parameters)Gets called by Hibernate to pass the configured type parameters to the implementation.boolean[]toColumnNullness(Object value, Mapping mapping)Given an instance of the type, return an array of boolean, indicating which mapped columns would be null.StringtoLoggableString(Object value, SessionFactoryImplementor factory)Generate a representation of the value for logging purposes.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.hibernate.metamodel.model.domain.BasicDomainType
areEqual, getPersistenceType
-
Methods inherited from interface org.hibernate.type.BasicType
disassemble, forEachDisassembledJdbcValue, forEachJdbcType, forEachJdbcType, getExpressibleJavaType, getJdbcMapping, getJdbcMappings, getJdbcTypeCount, getMappedJavaType, getMappedType, getValueConverter
-
Methods inherited from interface org.hibernate.metamodel.mapping.Bindable
forEachDisassembledJdbcValue, forEachJdbcValue, forEachJdbcValue
-
Methods inherited from interface org.hibernate.metamodel.model.domain.DomainType
getTypeName
-
Methods inherited from interface org.hibernate.metamodel.mapping.JdbcMapping
getCastType, getJdbcJavaType
-
Methods inherited from interface org.hibernate.metamodel.model.domain.SimpleDomainType
getBindableJavaType
-
Methods inherited from interface org.hibernate.query.sqm.SqmExpressible
isInstance, resolveExpressible
-
Methods inherited from interface org.hibernate.type.Type
disassemble
-
Methods inherited from interface org.hibernate.metamodel.mapping.ValueMapping
treatAs
-
-
-
-
Field Detail
-
CLASS_NAME
public static final String CLASS_NAME
- See Also:
- Constant Field Values
-
-
Method Detail
-
setParameterValues
public void setParameterValues(Properties parameters)
Description copied from interface:ParameterizedTypeGets called by Hibernate to pass the configured type parameters to the implementation.- Specified by:
setParameterValuesin interfaceParameterizedType
-
getName
public String getName()
Description copied from interface:TypeReturns the abbreviated name of the type.
-
getJdbcValueExtractor
public ValueExtractor<T> getJdbcValueExtractor()
Description copied from interface:JdbcMappingThe strategy for extracting values of this expressible type from JDBC ResultSets, CallableStatements, etc- Specified by:
getJdbcValueExtractorin interfaceBasicType<T extends Serializable>- Specified by:
getJdbcValueExtractorin interfaceJdbcMapping
-
getJdbcValueBinder
public ValueBinder<T> getJdbcValueBinder()
Description copied from interface:JdbcMappingThe strategy for binding values of this expressible type to JDBCPreparedStatements andCallableStatements.- Specified by:
getJdbcValueBinderin interfaceBasicType<T extends Serializable>- Specified by:
getJdbcValueBinderin interfaceJdbcMapping
-
getJdbcLiteralFormatter
public JdbcLiteralFormatter<T> getJdbcLiteralFormatter()
Description copied from interface:JdbcMappingThe strategy for formatting values of this expressible type to a SQL literal.- Specified by:
getJdbcLiteralFormatterin interfaceBasicType<T extends Serializable>- Specified by:
getJdbcLiteralFormatterin interfaceJdbcMapping
-
getJavaType
public Class<T> getJavaType()
- Specified by:
getJavaTypein interfaceType<T extends Serializable>
-
fromString
public T fromString(CharSequence string)
-
getMutabilityPlan
protected MutabilityPlan<T> getMutabilityPlan()
-
toColumnNullness
public boolean[] toColumnNullness(Object value, Mapping mapping)
Description copied from interface:TypeGiven an instance of the type, return an array of boolean, indicating which mapped columns would be null.- Specified by:
toColumnNullnessin interfaceType- Parameters:
value- an instance of the typemapping- The mapping abstraction- Returns:
- array indicating column nullness for a value instance
-
getRegistrationKeys
public String[] getRegistrationKeys()
Description copied from interface:BasicTypeGet the names under which this type should be registered in the type registry.- Specified by:
getRegistrationKeysin interfaceBasicType<T extends Serializable>- Returns:
- The keys under which to register this type.
-
registerUnderJavaType
protected boolean registerUnderJavaType()
-
getDictatedSize
protected Size getDictatedSize()
-
getJavaTypeDescriptor
public final JavaType<T> getJavaTypeDescriptor()
Description copied from interface:JdbcMappingThe descriptor for the Java type represented by this expressible type- Specified by:
getJavaTypeDescriptorin interfaceBasicType<T extends Serializable>- Specified by:
getJavaTypeDescriptorin interfaceJdbcMapping
-
setJavaTypeDescriptor
@Deprecated public final void setJavaTypeDescriptor(JavaType<T> javaType)
Deprecated.
-
getJdbcType
public final JdbcType getJdbcType()
Description copied from interface:OutputableTypeDescriptor for the SQL type mapped by this type.- Specified by:
getJdbcTypein interfaceJdbcMapping- Specified by:
getJdbcTypein interfaceOutputableType<T extends Serializable>
-
getReturnedClass
public final Class<?> getReturnedClass()
Description copied from interface:TypeThe class handled by this type.- Specified by:
getReturnedClassin interfaceType- Returns:
- The java type class handled by this type.
-
getColumnSpan
public final int getColumnSpan(Mapping mapping) throws MappingException
Description copied from interface:TypeHow many columns are used to persist this type. Always the same assqlTypes(mapping).length- Specified by:
getColumnSpanin interfaceType- Parameters:
mapping- The mapping object :/- Returns:
- The number of columns
- Throws:
MappingException- Generally indicates an issue accessing the passed mapping object.
-
getSqlTypeCodes
public final int[] getSqlTypeCodes(Mapping mapping) throws MappingException
Description copied from interface:TypeReturn the JDBC types codes (perTypes) for the columns mapped by this type. NOTE: The number of elements in this array matches the return fromType.getColumnSpan(org.hibernate.engine.spi.Mapping).- Specified by:
getSqlTypeCodesin interfaceType- Parameters:
mapping- The mapping object :/- Returns:
- The JDBC type codes.
- Throws:
MappingException- Generally indicates an issue accessing the passed mapping object.
-
isAssociationType
public final boolean isAssociationType()
Description copied from interface:TypeReturn true if the implementation is castable toAssociationType. This does not necessarily imply that the type actually represents an association. Essentially a polymorphic version of(type instanceof AssociationType.class)- Specified by:
isAssociationTypein interfaceType- Returns:
- True if this type is also an
AssociationTypeimplementor; false otherwise.
-
isCollectionType
public final boolean isCollectionType()
Description copied from interface:TypeReturn true if the implementation is castable toCollectionType. Essentially a polymorphic version of(type instanceof CollectionType.class)ACollectionTypeis additionally anAssociationType; so if this method returns true,Type.isAssociationType()should also return true.- Specified by:
isCollectionTypein interfaceType- Returns:
- True if this type is also a
CollectionTypeimplementor; false otherwise.
-
isComponentType
public final boolean isComponentType()
Description copied from interface:TypeReturn true if the implementation is castable toCompositeType. Essentially a polymorphic version of(type instanceof CompositeType.class). A component type may own collections or associations and hence must provide certain extra functionality.- Specified by:
isComponentTypein interfaceType- Returns:
- True if this type is also a
CompositeTypeimplementor; false otherwise.
-
isEntityType
public final boolean isEntityType()
Description copied from interface:TypeReturn true if the implementation is castable toEntityType. Essentially a polymorphic version of(type instanceof EntityType.class). AnEntityTypeis additionally anAssociationType; so if this method returns true,Type.isAssociationType()should also return true.- Specified by:
isEntityTypein interfaceType- Returns:
- True if this type is also an
EntityTypeimplementor; false otherwise.
-
isAnyType
public final boolean isAnyType()
Description copied from interface:TypeReturn true if the implementation is castable toAnyType. Essentially a polymorphic version of(type instanceof AnyType.class). AnAnyTypeis additionally anAssociationType; so if this method returns true,Type.isAssociationType()should also return true.
-
isSame
public final boolean isSame(Object x, Object y)
Description copied from interface:TypeCompare two instances of the class mapped by this type for persistence "equality" (equality of persistent state) taking a shortcut for entity references. For most types this should equate to anequalscheck on the values. For associations the implication is a bit different. For most types it is conceivable to simply delegate toType.isEqual(java.lang.Object, java.lang.Object)
-
isEqual
public final boolean isEqual(Object x, Object y, SessionFactoryImplementor factory)
Description copied from interface:TypeCompare two instances of the class mapped by this type for persistence "equality" (equality of persistent state). This should always equate to some form of comparison of the value's internal state. As an example, for something like a date the comparison should be based on its internal "time" state based on the specific portion it is meant to represent (timestamp, date, time).
-
isEqual
public boolean isEqual(Object one, Object another)
Description copied from interface:TypeCompare two instances of the class mapped by this type for persistence "equality" (equality of persistent state). This should always equate to some form of comparison of the value's internal state. As an example, for something like a date the comparison should be based on its internal "time" state based on the specific portion it is meant to represent (timestamp, date, time).
-
getHashCode
public final int getHashCode(Object x)
Description copied from interface:TypeGet a hash code, consistent with persistence "equality". Again for most types the normal usage is to delegate to the value'shashCode.- Specified by:
getHashCodein interfaceType- Parameters:
x- The value for which to retrieve a hash code- Returns:
- The hash code
-
getHashCode
public final int getHashCode(Object x, SessionFactoryImplementor factory)
Description copied from interface:TypeGet a hash code, consistent with persistence "equality". Again for most types the normal usage is to delegate to the value'shashCode.- Specified by:
getHashCodein interfaceType- Parameters:
x- The value for which to retrieve a hash codefactory- The session factory- Returns:
- The hash code
-
compare
public final int compare(Object x, Object y)
Description copied from interface:TypePerform aComparatorstyle comparison between values- Specified by:
comparein interfaceType- Parameters:
x- The first valuey- The second value- Returns:
- The comparison result. See
Comparator.compare(T, T)for a discussion.
-
isDirty
public final boolean isDirty(Object old, Object current, SharedSessionContractImplementor session)
Description copied from interface:TypeShould the parent be considered dirty, given both the old and current value?
-
isDirty
public final boolean isDirty(Object old, Object current, boolean[] checkable, SharedSessionContractImplementor session)
Description copied from interface:TypeShould the parent be considered dirty, given both the old and current value?
-
isModified
public final boolean isModified(Object oldHydratedState, Object currentState, boolean[] checkable, SharedSessionContractImplementor session)
Description copied from interface:TypeHas the value been modified compared to the current database state? The difference between this and theType.isDirty(java.lang.Object, java.lang.Object, org.hibernate.engine.spi.SharedSessionContractImplementor)methods is that here we need to account for "partially" built values. This is really only an issue with association types. For most type implementations it is enough to simply delegate toType.isDirty(java.lang.Object, java.lang.Object, org.hibernate.engine.spi.SharedSessionContractImplementor)here/- Specified by:
isModifiedin interfaceType- Parameters:
oldHydratedState- the database state, in a "hydrated" form, with identifiers unresolvedcurrentState- the current state of the objectcheckable- which columns are actually checkablesession- The session from which the request originated.- Returns:
- true if the field has been modified
-
nullSafeSet
public final void nullSafeSet(PreparedStatement st, Object value, int index, SharedSessionContractImplementor session) throws SQLException
Description copied from interface:TypeBind a value represented by an instance of themapped classto the JDBC prepared statement. Implementors should handle possibility of null values. A multi-column type should bind parameters starting fromindex.- Specified by:
nullSafeSetin interfaceType- Parameters:
st- The JDBC prepared statement to which to bindvalue- the object to writeindex- starting parameter bind indexsession- The originating session- Throws:
SQLException- An error from the JDBC driver
-
nullSafeSet
protected void nullSafeSet(PreparedStatement st, T value, int index, WrapperOptions options) throws SQLException
- Throws:
SQLException
-
toLoggableString
public final String toLoggableString(Object value, SessionFactoryImplementor factory)
Description copied from interface:TypeGenerate a representation of the value for logging purposes.- Specified by:
toLoggableStringin interfaceType- Parameters:
value- The value to be loggedfactory- The session factory- Returns:
- The loggable representation
-
isMutable
public final boolean isMutable()
Description copied from interface:TypeAre objects of this type mutable. (With respect to the referencing object ... entities and collections are considered immutable because they manage their own internal state.)
-
deepCopy
public final Object deepCopy(Object value, SessionFactoryImplementor factory)
Description copied from interface:TypeReturn a deep copy of the persistent state, stopping at entities and at collections.
-
disassemble
public final Serializable disassemble(Object value, SharedSessionContractImplementor session, Object owner) throws HibernateException
Description copied from interface:TypeReturn a disassembled representation of the object. This is the value Hibernate will use in second level caching, so care should be taken to break values down to their simplest forms; for entities especially, this means breaking them down into their constituent parts.- Specified by:
disassemblein interfaceType- Parameters:
value- the value to cachesession- the originating sessionowner- optional parent entity object (needed for collections)- Returns:
- the disassembled, deep cloned state
- Throws:
HibernateException- An error from Hibernate
-
assemble
public final Object assemble(Serializable cached, SharedSessionContractImplementor session, Object owner) throws HibernateException
Description copied from interface:TypeReconstruct the object from its disassembled state. This method is the reciprocal ofType.disassemble(Object, SharedSessionContractImplementor, Object)- Specified by:
assemblein interfaceType- Parameters:
cached- the disassembled state from the cachesession- the originating sessionowner- the parent entity object- Returns:
- the (re)assembled object
- Throws:
HibernateException- An error from Hibernate
-
beforeAssemble
public final void beforeAssemble(Serializable cached, SharedSessionContractImplementor session)
Description copied from interface:TypeCalled before assembling a query result set from the query cache, to allow batch fetching of entities missing from the second-level cache.- Specified by:
beforeAssemblein interfaceType- Parameters:
cached- The keysession- The originating session
-
replace
public final Object replace(Object original, Object target, SharedSessionContractImplementor session, Object owner, Map<Object,Object> copyCache)
Description copied from interface:TypeDuring merge, replace the existing (target) value in the entity we are merging to with a new (original) value from the detached entity we are merging. For immutable objects, or null values, it is safe to simply return the first parameter. For mutable objects, it is safe to return a copy of the first parameter. For objects with component values, it might make sense to recursively replace component values.- Specified by:
replacein interfaceType- Parameters:
original- the value from the detached entity being mergedtarget- the value in the managed entitysession- The originating sessionowner- The owner of the valuecopyCache- The cache of already copied/replaced values- Returns:
- the value to be merged
-
replace
public Object replace(Object original, Object target, SharedSessionContractImplementor session, Object owner, Map<Object,Object> copyCache, ForeignKeyDirection foreignKeyDirection)
Description copied from interface:TypeDuring merge, replace the existing (target) value in the entity we are merging to with a new (original) value from the detached entity we are merging. For immutable objects, or null values, it is safe to simply return the first parameter. For mutable objects, it is safe to return a copy of the first parameter. For objects with component values, it might make sense to recursively replace component values.- Specified by:
replacein interfaceType- Parameters:
original- the value from the detached entity being mergedtarget- the value in the managed entitysession- The originating sessionowner- The owner of the valuecopyCache- The cache of already copied/replaced valuesforeignKeyDirection- For associations, which direction does the foreign key point?- Returns:
- the value to be merged
-
canDoExtraction
public boolean canDoExtraction()
Description copied from interface:OutputableTypeCan the given instance of this type actually perform the parameter value extractions?- Specified by:
canDoExtractionin interfaceOutputableType<T extends Serializable>- Returns:
trueindicates thatOutputableType.extract(java.sql.CallableStatement, int, org.hibernate.engine.spi.SharedSessionContractImplementor)calls will not fail due toIllegalStateException.
-
extract
public T extract(CallableStatement statement, int startIndex, SharedSessionContractImplementor session) throws SQLException
Description copied from interface:OutputableTypePerform the extraction- Specified by:
extractin interfaceOutputableType<T extends Serializable>- Parameters:
statement- The CallableStatement from which to extract the parameter value(s).startIndex- The parameter index from which to extractsession- The originating session- Returns:
- The extracted value.
- Throws:
SQLException- Indicates an issue calling into the CallableStatement
-
extract
public T extract(CallableStatement statement, String paramName, SharedSessionContractImplementor session) throws SQLException
Description copied from interface:OutputableTypePerform the extraction- Specified by:
extractin interfaceOutputableType<T extends Serializable>- Parameters:
statement- The CallableStatement from which to extract the parameter value(s).paramName- The parameter names.session- The originating session- Returns:
- The extracted value.
- Throws:
SQLException- Indicates an issue calling into the CallableStatement
-
nullSafeSet
public final void nullSafeSet(PreparedStatement st, Object value, int index, boolean[] settable, SharedSessionContractImplementor session) throws HibernateException, SQLException
Description copied from interface:TypeBind a value represented by an instance of themapped classto the JDBC prepared statement, ignoring some columns as dictated by the 'settable' parameter. Implementors should handle the possibility of null values. A multi-column type should bind parameters starting fromindex.- Specified by:
nullSafeSetin interfaceType- Parameters:
st- The JDBC prepared statement to which to bindvalue- the object to writeindex- starting parameter bind indexsettable- an array indicating which columns to bind/ignoresession- The originating session- Throws:
HibernateException- An error from HibernateSQLException- An error from the JDBC driver
-
nullSafeSet
public void nullSafeSet(CallableStatement st, T value, String name, SharedSessionContractImplementor session) throws SQLException
Description copied from interface:ProcedureParameterNamedBinderBind a value to the JDBC prepared statement, ignoring some columns as dictated by the 'settable' parameter. Implementors should handle the possibility of null values. Does not support multi-column type- Specified by:
nullSafeSetin interfaceProcedureParameterNamedBinder<T extends Serializable>- Parameters:
st- The CallableStatement to which to bindvalue- the object to writename- parameter bind namesession- The originating session- Throws:
SQLException- An error from the JDBC driver
-
nullSafeSet
protected final void nullSafeSet(CallableStatement st, Object value, String name, WrapperOptions options) throws SQLException
- Throws:
SQLException
-
canDoSetting
public boolean canDoSetting()
Description copied from interface:ProcedureParameterNamedBinderCan the given instance of this type actually set the parameter value by name- Specified by:
canDoSettingin interfaceProcedureParameterNamedBinder<T extends Serializable>- Returns:
trueindicates that @{link #nullSafeSet} calls will not fail
-
-