javax.sql
public interface RowSet extends ResultSet
Since: 1.4
| Method Summary | |
|---|---|
| void | addRowSetListener(RowSetListener listener) |
| void | clearParameters() |
| void | execute() |
| String | getCommand() |
| String | getDataSourceName() |
| boolean | getEscapeProcessing() |
| int | getMaxFieldSize() |
| int | getMaxRows() |
| String | getPassword() |
| int | getQueryTimeout() |
| int | getTransactionIsolation() |
| Map<String,Class<?>> | getTypeMap() |
| String | getUrl() |
| String | getUsername() |
| boolean | isReadOnly() |
| void | removeRowSetListener(RowSetListener listener) |
| void | setArray(int i, Array x) |
| void | setAsciiStream(int parameterIndex, InputStream x, int length) |
| void | setBigDecimal(int parameterIndex, BigDecimal x) |
| void | setBinaryStream(int parameterIndex, InputStream x, int length) |
| void | setBlob(int i, Blob x) |
| void | setBoolean(int parameterIndex, boolean x) |
| void | setByte(int parameterIndex, byte x) |
| void | setBytes(int parameterIndex, byte[] x) |
| void | setCharacterStream(int parameterIndex, Reader reader, int length) |
| void | setClob(int i, Clob x) |
| void | setCommand(String cmd) |
| void | setConcurrency(int concurrency) |
| void | setDataSourceName(String name) |
| void | setDate(int parameterIndex, Date x) |
| void | setDate(int parameterIndex, Date x, Calendar cal) |
| void | setDouble(int parameterIndex, double x) |
| void | setEscapeProcessing(boolean enable) |
| void | setFloat(int parameterIndex, float x) |
| void | setInt(int parameterIndex, int x) |
| void | setLong(int parameterIndex, long x) |
| void | setMaxFieldSize(int max) |
| void | setMaxRows(int max) |
| void | setNull(int parameterIndex, int sqlType) |
| void | setNull(int paramIndex, int sqlType, String typeName) |
| void | setObject(int parameterIndex, Object x, int targetSqlType, int scale) |
| void | setObject(int parameterIndex, Object x, int targetSqlType) |
| void | setObject(int parameterIndex, Object x) |
| void | setPassword(String password) |
| void | setQueryTimeout(int seconds) |
| void | setReadOnly(boolean value) |
| void | setRef(int i, Ref x) |
| void | setShort(int parameterIndex, short x) |
| void | setString(int parameterIndex, String x) |
| void | setTime(int parameterIndex, Time x) |
| void | setTime(int parameterIndex, Time x, Calendar cal) |
| void | setTimestamp(int parameterIndex, Timestamp x) |
| void | setTimestamp(int parameterIndex, Timestamp x, Calendar cal) |
| void | setTransactionIsolation(int level) |
| void | setType(int type) |
| void | setTypeMap(Map<String,Class<?>> map) |
| void | setUrl(String url) |
| void | setUsername(String name) |