Package org.apache.cayenne.access.types
Class ShortType
java.lang.Object
org.apache.cayenne.access.types.ShortType
- All Implemented Interfaces:
ExtendedType<Short>
Handles
java.lang.Short
type mapping. Can be configured to recast
java.lang.Short to java.lang.Integer when binding values to PreparedStatement. This is
a workaround for bugs in certain drivers. Drivers that are proven to have issues with
short values are Sybase and Oracle (Mac OS X only).- Since:
- 1.0.2
-
Field Summary
Fields inherited from interface org.apache.cayenne.access.types.ExtendedType
TRIM_VALUES_THRESHOLD
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturns a full name of Java class that this ExtendedType supports.materializeObject
(CallableStatement st, int index, int type) Reads an object from a stored procedure OUT parameter, converting it to class returned by 'getClassName' method.materializeObject
(ResultSet rs, int index, int type) Reads an object from JDBC ResultSet column, converting it to class returned by 'getClassName' method.void
setJdbcObject
(PreparedStatement statement, Short value, int pos, int type, int precision) Initializes a single parameter of a PreparedStatement with object value.Converts value of the supported type to a human-readable String representation.
-
Field Details
-
widenShorts
protected boolean widenShorts
-
-
Constructor Details
-
ShortType
public ShortType(boolean widenShorts)
-
-
Method Details
-
getClassName
Description copied from interface:ExtendedType
Returns a full name of Java class that this ExtendedType supports.- Specified by:
getClassName
in interfaceExtendedType<Short>
-
materializeObject
Description copied from interface:ExtendedType
Reads an object from JDBC ResultSet column, converting it to class returned by 'getClassName' method.- Specified by:
materializeObject
in interfaceExtendedType<Short>
- Throws:
Exception
- if read error occurred, or an object can't be converted to a target Java class.
-
materializeObject
Description copied from interface:ExtendedType
Reads an object from a stored procedure OUT parameter, converting it to class returned by 'getClassName' method.- Specified by:
materializeObject
in interfaceExtendedType<Short>
- Throws:
Exception
- if read error occurred, or an object can't be converted to a target Java class.
-
setJdbcObject
public void setJdbcObject(PreparedStatement statement, Short value, int pos, int type, int precision) throws Exception Description copied from interface:ExtendedType
Initializes a single parameter of a PreparedStatement with object value.- Specified by:
setJdbcObject
in interfaceExtendedType<Short>
- Throws:
Exception
-
toString
Description copied from interface:ExtendedType
Converts value of the supported type to a human-readable String representation.- Specified by:
toString
in interfaceExtendedType<Short>
- Parameters:
value
- a value to convert to String.
-