|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
| Method Summary | |
void |
close()
Releases this ResultSet object's database and resources immediately instead of waiting for this to happen when it is automatically closed. |
boolean |
getBoolean(int column)
|
char |
getChar(int column)
Get the char value of the specified column in the resultset. |
long |
getColumnByName(java.lang.String column)
Get the position of a column identified by name. |
long |
getColumnCount()
Get the number of column in the resultset. |
java.lang.String |
getColumnName(int column)
Get the name of the specified column in the resultset. |
java.lang.String |
getColumnType(int column)
Get the Type of the specified column in the resultset. |
java.util.Date |
getDate(int column)
|
double |
getDouble(int column)
Get the double value of the specified column in the resultset. |
float |
getFloat(int column)
Get the float value of the specified column in the resultset. |
long |
getLong(int column)
Get the long value of the specified column in the resultset. |
java.lang.String |
getRSAsString()
|
java.lang.String |
getRSAsXmlString()
|
java.lang.String |
getString(int column)
Get the String value of the specified column in the resultset. |
boolean |
next()
Moves the cursor down one row from its current position. |
| Method Detail |
public void close()
throws WrapperException
WrapperException
public long getColumnByName(java.lang.String column)
throws WrapperException
column - the name of the chosen column.
WrapperException
public long getColumnCount()
throws WrapperException
WrapperException
public java.lang.String getColumnName(int column)
throws WrapperException
column - the number of the chosen column.
WrapperException
public java.lang.String getColumnType(int column)
throws WrapperException
column - the number of the chosen column.
WrapperException
public char getChar(int column)
throws WrapperException
column - the number of the chosen column.
WrapperException
public double getDouble(int column)
throws WrapperException
column - the number of the chosen column.
WrapperException
public float getFloat(int column)
throws WrapperException
column - the number of the chosen column.
WrapperException
public long getLong(int column)
throws WrapperException
column - the number of the chosen column.
WrapperException
public java.util.Date getDate(int column)
throws WrapperException
WrapperException
public boolean getBoolean(int column)
throws WrapperException
WrapperException
public java.lang.String getString(int column)
throws WrapperException
column - the number of the chosen column.
WrapperException
public java.lang.String getRSAsString()
throws WrapperException
WrapperException
public java.lang.String getRSAsXmlString()
throws WrapperException
WrapperException
public boolean next()
throws WrapperException
A ResultSet cursor is initially positioned before the first row; the first call to next makes the first row the current row; the second call makes the second row the current row, and so on.
WrapperException
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||