接口 Row
-
- 所有已知实现类:
RowImpl
public interface RowA row element returned from a SELECT query.
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 BigDecimalgetBigDecimal(int pos)Retrieve the value for column at position `pos' (starting at 0) as a decimal value.BigDecimalgetBigDecimal(String fieldName)Retrieve the value for column `fieldName' as a decimal value.booleangetBoolean(int pos)Retrieve the value for column at position `pos' (starting at 0) as a boolean value.booleangetBoolean(String fieldName)Retrieve the value for column `fieldName' as a boolean value.bytegetByte(int pos)Retrieve the value for column at position `pos' (starting at 0) as a byte value.bytegetByte(String fieldName)Retrieve the value for column `fieldName' as a byte value.DategetDate(int pos)Retrieve the value for column at position `pos' (starting at 0) as a byte value.DategetDate(String fieldName)Retrieve the value for column `fieldName' as aDatevalue.DbDocgetDbDoc(int pos)Retrieve the value for column at position `pos' (starting at 0) as a DbDoc value.DbDocgetDbDoc(String fieldName)Retrieve the value for column `fieldName' as a DbDoc value.doublegetDouble(int pos)Retrieve the value for column at position `pos' (starting at 0) as a double value.doublegetDouble(String fieldName)Retrieve the value for column `fieldName' as a double value.intgetInt(int pos)Retrieve the value for column at position `pos' (starting at 0) as an integer value.intgetInt(String fieldName)Retrieve the value for column `fieldName' as an integer value.longgetLong(int pos)Retrieve the value for column at position `pos' (starting at 0) as a long value.longgetLong(String fieldName)Retrieve the value for column `fieldName' as a long value.StringgetString(int pos)Retrieve the value for column at position `pos' (starting at 0) as a string value.StringgetString(String fieldName)Retrieve the value for column `fieldName' as a string value.TimegetTime(int pos)Retrieve the value for column at position `pos' (starting at 0) as a byte value.TimegetTime(String fieldName)Retrieve the value for column `fieldName' as aTimevalue.TimestampgetTimestamp(int pos)Retrieve the value for column at position `pos' (starting at 0) as a byte value.TimestampgetTimestamp(String fieldName)Retrieve the value for column `fieldName' as aTimestampvalue.
-
-
-
方法详细资料
-
getBigDecimal
BigDecimal getBigDecimal(String fieldName)
Retrieve the value for column `fieldName' as a decimal value.- 参数:
fieldName- field name- 返回:
- value
-
getBigDecimal
BigDecimal getBigDecimal(int pos)
Retrieve the value for column at position `pos' (starting at 0) as a decimal value.- 参数:
pos- field position- 返回:
- value
-
getBoolean
boolean getBoolean(String fieldName)
Retrieve the value for column `fieldName' as a boolean value.- 参数:
fieldName- field name- 返回:
- value
-
getBoolean
boolean getBoolean(int pos)
Retrieve the value for column at position `pos' (starting at 0) as a boolean value.- 参数:
pos- field position field position- 返回:
- value
-
getByte
byte getByte(String fieldName)
Retrieve the value for column `fieldName' as a byte value.- 参数:
fieldName- field name- 返回:
- value
-
getByte
byte getByte(int pos)
Retrieve the value for column at position `pos' (starting at 0) as a byte value.- 参数:
pos- field position field position- 返回:
- value
-
getDate
Date getDate(String fieldName)
Retrieve the value for column `fieldName' as aDatevalue.- 参数:
fieldName- field name- 返回:
- value
-
getDate
Date getDate(int pos)
Retrieve the value for column at position `pos' (starting at 0) as a byte value.- 参数:
pos- field position field position- 返回:
- value
-
getDbDoc
DbDoc getDbDoc(String fieldName)
Retrieve the value for column `fieldName' as a DbDoc value.- 参数:
fieldName- field name- 返回:
- value
-
getDbDoc
DbDoc getDbDoc(int pos)
Retrieve the value for column at position `pos' (starting at 0) as a DbDoc value.- 参数:
pos- field position field position- 返回:
- value
-
getDouble
double getDouble(String fieldName)
Retrieve the value for column `fieldName' as a double value.- 参数:
fieldName- field name- 返回:
- value
-
getDouble
double getDouble(int pos)
Retrieve the value for column at position `pos' (starting at 0) as a double value.- 参数:
pos- field position field position- 返回:
- value
-
getInt
int getInt(String fieldName)
Retrieve the value for column `fieldName' as an integer value.- 参数:
fieldName- field name- 返回:
- value
-
getInt
int getInt(int pos)
Retrieve the value for column at position `pos' (starting at 0) as an integer value.- 参数:
pos- field position field position- 返回:
- value
-
getLong
long getLong(String fieldName)
Retrieve the value for column `fieldName' as a long value.- 参数:
fieldName- field name- 返回:
- value
-
getLong
long getLong(int pos)
Retrieve the value for column at position `pos' (starting at 0) as a long value.- 参数:
pos- field position- 返回:
- value
-
getString
String getString(String fieldName)
Retrieve the value for column `fieldName' as a string value.- 参数:
fieldName- field name- 返回:
- value
-
getString
String getString(int pos)
Retrieve the value for column at position `pos' (starting at 0) as a string value.- 参数:
pos- field position- 返回:
- value
-
getTime
Time getTime(String fieldName)
Retrieve the value for column `fieldName' as aTimevalue.- 参数:
fieldName- field name- 返回:
- value
-
getTime
Time getTime(int pos)
Retrieve the value for column at position `pos' (starting at 0) as a byte value.- 参数:
pos- field position- 返回:
- value
-
getTimestamp
Timestamp getTimestamp(String fieldName)
Retrieve the value for column `fieldName' as aTimestampvalue.- 参数:
fieldName- field name- 返回:
- value
-
getTimestamp
Timestamp getTimestamp(int pos)
Retrieve the value for column at position `pos' (starting at 0) as a byte value.- 参数:
pos- field position- 返回:
- value
-
-