Class NCharColumnMapping
java.lang.Object
org.datanucleus.store.rdbms.mapping.column.AbstractColumnMapping
org.datanucleus.store.rdbms.mapping.column.CharColumnMapping
org.datanucleus.store.rdbms.mapping.column.NCharColumnMapping
- All Implemented Interfaces:
ColumnMapping
- Direct Known Subclasses:
NVarcharColumnMapping
Mapping of a NCHAR column.
Copied from CharColumnMapping but uses setNString/getNString instead of setString/getString.
-
Nested Class Summary
Nested classes/interfaces inherited from class CharColumnMapping
CharColumnMapping.FormatterInfo -
Field Summary
Fields inherited from class AbstractColumnMapping
column, mapping, storeMgr -
Constructor Summary
ConstructorsConstructorDescriptionNCharColumnMapping(JavaTypeMapping mapping, RDBMSStoreManager storeMgr, Column col) -
Method Summary
Modifier and TypeMethodDescriptionbooleangetBoolean(ResultSet rs, int param) Method to extract a boolean from the ResultSet at the specified positioncharMethod to extract a character from the ResultSet at the specified positionintMethod to return the java.sql.Types type that this relates to.Method to extract an object from the ResultSet at the specified positionMethod to extract a String from the ResultSet at the specified positionvoidsetBoolean(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 CharColumnMapping
getJavaUtilDateFormat, initialize, isStringBasedMethods inherited from class 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 Details
-
NCharColumnMapping
-
-
Method Details
-
getJDBCType
public int getJDBCType()Description copied from class:AbstractColumnMappingMethod to return the java.sql.Types type that this relates to.- Overrides:
getJDBCTypein classCharColumnMapping- Returns:
- The JDBC "type"
-
setChar
Method to set a character at the specified position in the JDBC PreparedStatement.- Specified by:
setCharin interfaceColumnMapping- Overrides:
setCharin classCharColumnMapping- Parameters:
ps- The PreparedStatementparam- Parameter positionvalue- The value to set
-
getChar
Method to extract a character from the ResultSet at the specified position- Specified by:
getCharin interfaceColumnMapping- Overrides:
getCharin classCharColumnMapping- Parameters:
rs- The Result Setparam- The parameter position- Returns:
- the character
-
setString
Method to set a String at the specified position in the JDBC PreparedStatement.- Specified by:
setStringin interfaceColumnMapping- Overrides:
setStringin classCharColumnMapping- Parameters:
ps- The PreparedStatementparam- Parameter positionvalue- The value to set
-
getString
Method to extract a String from the ResultSet at the specified position- Specified by:
getStringin interfaceColumnMapping- Overrides:
getStringin classCharColumnMapping- Parameters:
rs- The Result Setparam- The parameter position- Returns:
- the String
-
setBoolean
Method to set a boolean at the specified position in the JDBC PreparedStatement.- Specified by:
setBooleanin interfaceColumnMapping- Overrides:
setBooleanin classCharColumnMapping- Parameters:
ps- The PreparedStatementparam- Parameter positionvalue- The value to set
-
getBoolean
Method to extract a boolean from the ResultSet at the specified position- Specified by:
getBooleanin interfaceColumnMapping- Overrides:
getBooleanin classCharColumnMapping- Parameters:
rs- The Result Setparam- The parameter position- Returns:
- the boolean
-
setObject
Method to set an object at the specified position in the JDBC PreparedStatement.- Specified by:
setObjectin interfaceColumnMapping- Overrides:
setObjectin classCharColumnMapping- Parameters:
ps- The PreparedStatementparam- Parameter positionvalue- The value to set
-
getObject
Method to extract an object from the ResultSet at the specified position- Specified by:
getObjectin interfaceColumnMapping- Overrides:
getObjectin classCharColumnMapping- Parameters:
rs- The Result Setparam- The parameter position- Returns:
- the object
-