| Prev Class | Next Class | Frames | No Frames |
| Summary: Nested | Field | Method | Constr | Detail: Nested | Field | Method | Constr |
java.lang.Objectorg.postgresql.pljava.jdbc.AbstractResultSetpublic abstract class AbstractResultSetextends java.lang.Objectimplements ResultSetAbstractResultSet serves as a base class for implementations
of thejava.sql.ResultSet interface. All calls using columnNames are
translated into the corresponding call with index position computed using
a call to findColumn.
Method Summary | |
Array |
|
InputStream |
|
BigDecimal |
|
BigDecimal |
|
InputStream |
|
Blob |
|
boolean |
|
byte |
|
byte[] |
|
Reader |
|
Clob |
|
String | |
Date |
|
Date |
|
double |
|
float |
|
int |
|
long |
|
Object |
|
Object |
|
Ref |
|
short |
|
Statement | |
String |
|
Time |
|
Time |
|
Timestamp |
|
Timestamp |
|
URL |
|
InputStream |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
public Array getArray(String columnName)
throws SQLExceptionpublic InputStream getAsciiStream(String columnName)
throws SQLExceptionpublic BigDecimal getBigDecimal(String columnName)
throws SQLExceptionpublic BigDecimal getBigDecimal(String columnName,
int scale)
throws SQLExceptionDeprecated.
public InputStream getBinaryStream(String columnName)
throws SQLExceptionpublic Blob getBlob(String columnName)
throws SQLExceptionpublic boolean getBoolean(String columnName)
throws SQLExceptionpublic byte getByte(String columnName)
throws SQLExceptionpublic byte[] getBytes(String columnName)
throws SQLExceptionpublic Reader getCharacterStream(String columnName)
throws SQLExceptionpublic Clob getClob(String columnName)
throws SQLExceptionpublic String getCursorName()
throws SQLExceptionpublic Date getDate(String columnName)
throws SQLExceptionpublic Date getDate(String columnName,
Calendar cal)
throws SQLExceptionpublic double getDouble(String columnName)
throws SQLExceptionpublic float getFloat(String columnName)
throws SQLExceptionpublic int getInt(String columnName)
throws SQLExceptionpublic long getLong(String columnName)
throws SQLExceptionpublic Object getObject(String columnName)
throws SQLExceptionpublic Object getObject(String columnName,
Map map)
throws SQLExceptionpublic Ref getRef(String columnName)
throws SQLExceptionpublic short getShort(String columnName)
throws SQLExceptionpublic Statement getStatement()
throws SQLExceptionpublic String getString(String columnName)
throws SQLExceptionpublic Time getTime(String columnName)
throws SQLExceptionpublic Time getTime(String columnName,
Calendar cal)
throws SQLExceptionpublic Timestamp getTimestamp(String columnName)
throws SQLExceptionpublic Timestamp getTimestamp(String columnName,
Calendar cal)
throws SQLExceptionpublic URL getURL(String columnName)
throws SQLExceptionpublic InputStream getUnicodeStream(String columnName)
throws SQLExceptionDeprecated.
public void updateArray(String columnName,
Array x)
throws SQLExceptionpublic void updateAsciiStream(String columnName,
InputStream x,
int length)
throws SQLExceptionpublic void updateBigDecimal(String columnName,
BigDecimal x)
throws SQLExceptionpublic void updateBinaryStream(String columnName,
InputStream x,
int length)
throws SQLExceptionpublic void updateBlob(String columnName,
Blob x)
throws SQLExceptionpublic void updateBoolean(String columnName,
boolean x)
throws SQLExceptionpublic void updateByte(String columnName,
byte x)
throws SQLExceptionpublic void updateBytes(String columnName,
x[] )
throws SQLExceptionpublic void updateCharacterStream(String columnName,
Reader x,
int length)
throws SQLExceptionpublic void updateClob(String columnName,
Clob x)
throws SQLExceptionpublic void updateDate(String columnName,
Date x)
throws SQLExceptionpublic void updateDouble(String columnName,
double x)
throws SQLExceptionpublic void updateFloat(String columnName,
float x)
throws SQLExceptionpublic void updateInt(String columnName,
int x)
throws SQLExceptionpublic void updateLong(String columnName,
long x)
throws SQLExceptionpublic void updateNull(String columnName)
throws SQLExceptionpublic void updateObject(String columnName,
Object x)
throws SQLExceptionpublic void updateObject(String columnName,
Object x,
int scale)
throws SQLExceptionpublic void updateRef(String columnName,
Ref x)
throws SQLExceptionpublic void updateShort(String columnName,
short x)
throws SQLExceptionpublic void updateString(String columnName,
String x)
throws SQLExceptionpublic void updateTime(String columnName,
Time x)
throws SQLExceptionpublic void updateTimestamp(String columnName,
Timestamp x)
throws SQLException