Prev Class | Next Class | Frames | No Frames |
Summary: Nested | Field | Method | Constr | Detail: Nested | Field | Method | Constr |
java.lang.Object
org.postgresql.pljava.jdbc.AbstractResultSet
public abstract class AbstractResultSet
extends java.lang.Object
implements ResultSet
AbstractResultSet
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 SQLException
public InputStream getAsciiStream(String columnName) throws SQLException
public BigDecimal getBigDecimal(String columnName) throws SQLException
public BigDecimal getBigDecimal(String columnName, int scale) throws SQLException
Deprecated.
public InputStream getBinaryStream(String columnName) throws SQLException
public Blob getBlob(String columnName) throws SQLException
public boolean getBoolean(String columnName) throws SQLException
public byte getByte(String columnName) throws SQLException
public byte[] getBytes(String columnName) throws SQLException
public Reader getCharacterStream(String columnName) throws SQLException
public Clob getClob(String columnName) throws SQLException
public String getCursorName() throws SQLException
public Date getDate(String columnName) throws SQLException
public Date getDate(String columnName, Calendar cal) throws SQLException
public double getDouble(String columnName) throws SQLException
public float getFloat(String columnName) throws SQLException
public int getInt(String columnName) throws SQLException
public long getLong(String columnName) throws SQLException
public Object getObject(String columnName) throws SQLException
public Object getObject(String columnName, Map map) throws SQLException
public Ref getRef(String columnName) throws SQLException
public short getShort(String columnName) throws SQLException
public Statement getStatement() throws SQLException
public String getString(String columnName) throws SQLException
public Time getTime(String columnName) throws SQLException
public Time getTime(String columnName, Calendar cal) throws SQLException
public Timestamp getTimestamp(String columnName) throws SQLException
public Timestamp getTimestamp(String columnName, Calendar cal) throws SQLException
public URL getURL(String columnName) throws SQLException
public InputStream getUnicodeStream(String columnName) throws SQLException
Deprecated.
public void updateArray(String columnName, Array x) throws SQLException
public void updateAsciiStream(String columnName, InputStream x, int length) throws SQLException
public void updateBigDecimal(String columnName, BigDecimal x) throws SQLException
public void updateBinaryStream(String columnName, InputStream x, int length) throws SQLException
public void updateBlob(String columnName, Blob x) throws SQLException
public void updateBoolean(String columnName, boolean x) throws SQLException
public void updateByte(String columnName, byte x) throws SQLException
public void updateBytes(String columnName, x[] ) throws SQLException
public void updateCharacterStream(String columnName, Reader x, int length) throws SQLException
public void updateClob(String columnName, Clob x) throws SQLException
public void updateDate(String columnName, Date x) throws SQLException
public void updateDouble(String columnName, double x) throws SQLException
public void updateFloat(String columnName, float x) throws SQLException
public void updateInt(String columnName, int x) throws SQLException
public void updateLong(String columnName, long x) throws SQLException
public void updateNull(String columnName) throws SQLException
public void updateObject(String columnName, Object x) throws SQLException
public void updateObject(String columnName, Object x, int scale) throws SQLException
public void updateRef(String columnName, Ref x) throws SQLException
public void updateShort(String columnName, short x) throws SQLException
public void updateString(String columnName, String x) throws SQLException
public void updateTime(String columnName, Time x) throws SQLException
public void updateTimestamp(String columnName, Timestamp x) throws SQLException