public interface ResultSet
| Modifier and Type | Method and Description |
|---|---|
java.math.BigDecimal |
getBigDecimal(int index)
Gets the big decimal.
|
java.math.BigDecimal |
getBigDecimal(java.lang.String name)
Gets the big decimal.
|
byte |
getByte(int index)
Gets the byte.
|
byte |
getByte(java.lang.String name)
Gets the byte.
|
byte[] |
getBytes(int index)
Gets the bytes.
|
byte[] |
getBytes(java.lang.String name)
Gets the bytes.
|
java.util.Date |
getDate(int index)
Gets the date.
|
java.util.Date |
getDate(java.lang.String name)
Gets the date.
|
double |
getDouble(int index)
Gets the double.
|
double |
getDouble(java.lang.String name)
Gets the double.
|
<T extends java.lang.Enum<T>> |
getEnum(int index,
java.lang.Class<T> type)
Gets the enum.
|
<T extends java.lang.Enum<T>> |
getEnum(java.lang.String name,
java.lang.Class<T> type)
Gets the enum.
|
float |
getFloat(int index)
Gets the float.
|
float |
getFloat(java.lang.String name)
Gets the float.
|
int |
getInt(int index)
Gets the int.
|
int |
getInt(java.lang.String name)
Gets the int.
|
long |
getLong(int index)
Gets the long.
|
long |
getLong(java.lang.String name)
Gets the long.
|
java.lang.Object |
getObject(int index)
Gets the object.
|
<O> O |
getObject(int index,
java.lang.Class<O> type)
Gets the object.
|
java.lang.Object |
getObject(java.lang.String name)
Gets the object.
|
<O> O |
getObject(java.lang.String name,
java.lang.Class<O> type)
Gets the object.
|
int |
getRowNum()
Gets the row num.
|
java.lang.String |
getString(int index)
Gets the string.
|
java.lang.String |
getString(java.lang.String name)
Gets the string.
|
int getRowNum()
int getInt(int index)
index - the indexint getInt(java.lang.String name)
name - the namelong getLong(int index)
index - the indexlong getLong(java.lang.String name)
name - the namefloat getFloat(int index)
index - the indexfloat getFloat(java.lang.String name)
name - the namedouble getDouble(int index)
index - the indexdouble getDouble(java.lang.String name)
name - the namebyte getByte(int index)
index - the indexbyte getByte(java.lang.String name)
name - the namebyte[] getBytes(int index)
index - the indexbyte[] getBytes(java.lang.String name)
name - the namejava.util.Date getDate(int index)
index - the indexjava.util.Date getDate(java.lang.String name)
name - the namejava.lang.String getString(int index)
index - the indexjava.lang.String getString(java.lang.String name)
name - the name<T extends java.lang.Enum<T>> T getEnum(int index,
java.lang.Class<T> type)
T - the generic typeindex - the indextype - the type<T extends java.lang.Enum<T>> T getEnum(java.lang.String name,
java.lang.Class<T> type)
T - the generic typename - the nametype - the typejava.lang.Object getObject(int index)
index - the indexjava.lang.Object getObject(java.lang.String name)
name - the name<O> O getObject(int index,
java.lang.Class<O> type)
O - the generic typeindex - the indextype - the type<O> O getObject(java.lang.String name,
java.lang.Class<O> type)
O - the generic typename - the nametype - the typejava.math.BigDecimal getBigDecimal(int index)
index - the indexjava.math.BigDecimal getBigDecimal(java.lang.String name)
name - the name