Class CharColumnMapping
- java.lang.Object
-
- org.datanucleus.store.rdbms.mapping.column.AbstractColumnMapping
-
- org.datanucleus.store.rdbms.mapping.column.CharColumnMapping
-
- All Implemented Interfaces:
ColumnMapping
- Direct Known Subclasses:
DB2DatalinkColumnMapping,NCharColumnMapping,OracleXMLTypeColumnMapping,VarCharColumnMapping
public class CharColumnMapping extends AbstractColumnMapping
Mapping of a CHAR column.
-
-
Field Summary
-
Fields inherited from class org.datanucleus.store.rdbms.mapping.column.AbstractColumnMapping
column, mapping, storeMgr
-
-
Constructor Summary
Constructors Constructor Description CharColumnMapping(JavaTypeMapping mapping, RDBMSStoreManager storeMgr, Column col)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleangetBoolean(ResultSet rs, int param)Method to extract a boolean from the ResultSet at the specified positionchargetChar(ResultSet rs, int param)Method to extract a character from the ResultSet at the specified positionSimpleDateFormatgetJavaUtilDateFormat()Get a Format object to handle java.util.Date.intgetJDBCType()Method to return the java.sql.Types type that this relates to.ObjectgetObject(ResultSet rs, int param)Method to extract an object from the ResultSet at the specified positionStringgetString(ResultSet rs, int param)Method to extract a String from the ResultSet at the specified positionprotected voidinitialize()Method to initialise the column mapping.booleanisStringBased()Accessor for whether the mapping is string-based.voidsetBoolean(PreparedStatement ps, int param, boolean value)Method to set a boolean at the specified position in the JDBC PreparedStatement.voidsetChar(PreparedStatement ps, int param, char value)Method to set a character at the specified position in the JDBC PreparedStatement.voidsetObject(PreparedStatement ps, int param, Object value)Method to set an object at the specified position in the JDBC PreparedStatement.voidsetString(PreparedStatement ps, int param, String value)Method to set a String at the specified position in the JDBC PreparedStatement.-
Methods inherited from class org.datanucleus.store.rdbms.mapping.column.AbstractColumnMapping
equals, failureMessage, failureMessage, failureMessage, getByte, getColumn, getDatastoreAdapter, getDouble, getFloat, getInsertionInputParameter, getInt, getJavaTypeMapping, getLong, getShort, getTypeInfo, getUpdateInputParameter, hashCode, includeInFetchStatement, initTypeInfo, insertValuesOnInsert, isBitBased, isBooleanBased, isDecimalBased, isIntegerBased, isNullable, setByte, setDouble, setFloat, setInt, setLong, setShort, useDefaultWhenNull
-
-
-
-
Constructor Detail
-
CharColumnMapping
public CharColumnMapping(JavaTypeMapping mapping, RDBMSStoreManager storeMgr, Column col)
Constructor.- Parameters:
mapping- Java type mappingstoreMgr- Store Managercol- column to be mapped
-
-
Method Detail
-
initialize
protected void initialize()
Method to initialise the column mapping. Provides default length specifications for the CHAR column to fit the data being stored.
-
isStringBased
public boolean isStringBased()
Accessor for whether the mapping is string-based.- Specified by:
isStringBasedin interfaceColumnMapping- Overrides:
isStringBasedin classAbstractColumnMapping- Returns:
- Whether the mapping is string based
-
getJDBCType
public int getJDBCType()
Description copied from class:AbstractColumnMappingMethod to return the java.sql.Types type that this relates to.- Specified by:
getJDBCTypein classAbstractColumnMapping- Returns:
- The JDBC "type"
-
setChar
public void setChar(PreparedStatement ps, int param, char value)
Method to set a character at the specified position in the JDBC PreparedStatement.- Specified by:
setCharin interfaceColumnMapping- Overrides:
setCharin classAbstractColumnMapping- Parameters:
ps- The PreparedStatementparam- Parameter positionvalue- The value to set
-
getChar
public char getChar(ResultSet rs, int param)
Method to extract a character from the ResultSet at the specified position- Specified by:
getCharin interfaceColumnMapping- Overrides:
getCharin classAbstractColumnMapping- Parameters:
rs- The Result Setparam- The parameter position- Returns:
- the character
-
setString
public void setString(PreparedStatement ps, int param, String value)
Method to set a String at the specified position in the JDBC PreparedStatement.- Specified by:
setStringin interfaceColumnMapping- Overrides:
setStringin classAbstractColumnMapping- Parameters:
ps- The PreparedStatementparam- Parameter positionvalue- The value to set
-
getString
public String getString(ResultSet rs, int param)
Method to extract a String from the ResultSet at the specified position- Specified by:
getStringin interfaceColumnMapping- Overrides:
getStringin classAbstractColumnMapping- Parameters:
rs- The Result Setparam- The parameter position- Returns:
- the String
-
setBoolean
public void setBoolean(PreparedStatement ps, int param, boolean value)
Method to set a boolean at the specified position in the JDBC PreparedStatement.- Specified by:
setBooleanin interfaceColumnMapping- Overrides:
setBooleanin classAbstractColumnMapping- Parameters:
ps- The PreparedStatementparam- Parameter positionvalue- The value to set
-
getBoolean
public boolean getBoolean(ResultSet rs, int param)
Method to extract a boolean from the ResultSet at the specified position- Specified by:
getBooleanin interfaceColumnMapping- Overrides:
getBooleanin classAbstractColumnMapping- Parameters:
rs- The Result Setparam- The parameter position- Returns:
- the boolean
-
setObject
public void setObject(PreparedStatement ps, int param, Object value)
Method to set an object at the specified position in the JDBC PreparedStatement.- Specified by:
setObjectin interfaceColumnMapping- Overrides:
setObjectin classAbstractColumnMapping- Parameters:
ps- The PreparedStatementparam- Parameter positionvalue- The value to set
-
getObject
public Object getObject(ResultSet rs, int param)
Method to extract an object from the ResultSet at the specified position- Specified by:
getObjectin interfaceColumnMapping- Overrides:
getObjectin classAbstractColumnMapping- Parameters:
rs- The Result Setparam- The parameter position- Returns:
- the object
-
getJavaUtilDateFormat
public SimpleDateFormat getJavaUtilDateFormat()
Get a Format object to handle java.util.Date. If a TimeZone is present, it will be used to format dates to that zone.- Returns:
- Date formatter to use
-
-