Interface JDBCValueMappings.PrimitiveValueReader
-
- All Known Subinterfaces:
JDBCValueMappings.ValueReader<JALO,DB>
- All Known Implementing Classes:
JDBCValueMappings.AbstractValueReaderWriter
,JDBCValueMappings.BlobValueWriter
,JDBCValueMappings.DefaultDateTimestampValueReaderWriter
,JDBCValueMappings.DefaultIntegerValueReaderWriter
,JDBCValueMappings.DefaultLongReaderWriter
,JDBCValueMappings.DefaultStringValueReaderWriter
,JDBCValueMappings.ItemPropertyValueReaderWriter
,JDBCValueMappings.ItemReaderWriter
,JDBCValueMappings.PKReaderWriter
- Enclosing class:
- JDBCValueMappings
public static interface JDBCValueMappings.PrimitiveValueReader
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getBoolean(java.sql.ResultSet rs, int idx)
boolean
getBoolean(java.sql.ResultSet rs, java.lang.String fieldName)
byte
getByte(java.sql.ResultSet rs, int idx)
byte
getByte(java.sql.ResultSet rs, java.lang.String fieldName)
char
getChar(java.sql.ResultSet rs, int idx)
char
getChar(java.sql.ResultSet rs, java.lang.String fieldName)
double
getDouble(java.sql.ResultSet rs, int idx)
double
getDouble(java.sql.ResultSet rs, java.lang.String fieldName)
float
getFloat(java.sql.ResultSet rs, int idx)
float
getFloat(java.sql.ResultSet rs, java.lang.String fieldName)
int
getInt(java.sql.ResultSet rs, int idx)
int
getInt(java.sql.ResultSet rs, java.lang.String fieldName)
long
getLong(java.sql.ResultSet rs, int idx)
long
getLong(java.sql.ResultSet rs, java.lang.String fieldName)
short
getShort(java.sql.ResultSet rs, int idx)
short
getShort(java.sql.ResultSet rs, java.lang.String fieldName)
-
-
-
Method Detail
-
getLong
long getLong(java.sql.ResultSet rs, java.lang.String fieldName) throws java.sql.SQLException
- Throws:
java.sql.SQLException
-
getLong
long getLong(java.sql.ResultSet rs, int idx) throws java.sql.SQLException
- Throws:
java.sql.SQLException
-
getDouble
double getDouble(java.sql.ResultSet rs, java.lang.String fieldName) throws java.sql.SQLException
- Throws:
java.sql.SQLException
-
getDouble
double getDouble(java.sql.ResultSet rs, int idx) throws java.sql.SQLException
- Throws:
java.sql.SQLException
-
getChar
char getChar(java.sql.ResultSet rs, java.lang.String fieldName) throws java.sql.SQLException
- Throws:
java.sql.SQLException
-
getChar
char getChar(java.sql.ResultSet rs, int idx) throws java.sql.SQLException
- Throws:
java.sql.SQLException
-
getByte
byte getByte(java.sql.ResultSet rs, java.lang.String fieldName) throws java.sql.SQLException
- Throws:
java.sql.SQLException
-
getByte
byte getByte(java.sql.ResultSet rs, int idx) throws java.sql.SQLException
- Throws:
java.sql.SQLException
-
getFloat
float getFloat(java.sql.ResultSet rs, java.lang.String fieldName) throws java.sql.SQLException
- Throws:
java.sql.SQLException
-
getFloat
float getFloat(java.sql.ResultSet rs, int idx) throws java.sql.SQLException
- Throws:
java.sql.SQLException
-
getInt
int getInt(java.sql.ResultSet rs, java.lang.String fieldName) throws java.sql.SQLException
- Throws:
java.sql.SQLException
-
getInt
int getInt(java.sql.ResultSet rs, int idx) throws java.sql.SQLException
- Throws:
java.sql.SQLException
-
getBoolean
boolean getBoolean(java.sql.ResultSet rs, java.lang.String fieldName) throws java.sql.SQLException
- Throws:
java.sql.SQLException
-
getBoolean
boolean getBoolean(java.sql.ResultSet rs, int idx) throws java.sql.SQLException
- Throws:
java.sql.SQLException
-
getShort
short getShort(java.sql.ResultSet rs, java.lang.String fieldName) throws java.sql.SQLException
- Throws:
java.sql.SQLException
-
getShort
short getShort(java.sql.ResultSet rs, int idx) throws java.sql.SQLException
- Throws:
java.sql.SQLException
-
-