public class RowSetImpl extends Object implements RowSet, Joinable, Serializable
| 限定符和类型 | 字段和说明 |
|---|---|
protected String |
command |
protected int |
concurrency |
protected String |
dataSourceName |
protected boolean |
driverloaded |
protected RowSetEvent |
event |
protected Vector<RowSetListener> |
eventListener |
protected int |
fetchDirection |
protected int |
fetchSize |
protected ResultSet |
innerRS
实际存储数据的结果集
|
protected boolean |
isClosed |
protected int |
maxFieldSize |
protected int |
maxRows |
protected String |
password |
protected Properties |
props |
protected int |
queryTimeout |
protected boolean |
readOnly |
protected CallableStatement |
rowCstm |
protected RowSetMetaData |
rowRsmd |
protected Connection |
rowsetConnection |
protected int |
rowsetType |
protected String |
url |
protected String |
username |
| 构造器和说明 |
|---|
RowSetImpl() |
RowSetImpl(Connection initConn) |
| 限定符和类型 | 方法和说明 |
|---|---|
boolean |
absolute(int row) |
void |
addRowSetListener(RowSetListener listener) |
void |
afterLast() |
void |
beforeFirst() |
void |
cancelRowUpdates() |
protected void |
checkRowIndexType(int type)
检测RowSet对象指针方向和移动方向是否契合
|
protected void |
checkRowSetClosed()
检测Rowset对象是否关闭
|
protected void |
checkRowSetUpdatableType()
检测RowSet对象是否为可更新结果集对象
|
void |
clearParameters() |
void |
clearWarnings() |
void |
close() |
void |
deleteRow() |
void |
execute() |
int |
findColumn(String columnLabel) |
boolean |
first() |
Array |
getArray(int columnIndex) |
Array |
getArray(String columnLabel) |
InputStream |
getAsciiStream(int columnIndex) |
InputStream |
getAsciiStream(String columnLabel) |
BigDecimal |
getBigDecimal(int columnIndex) |
BigDecimal |
getBigDecimal(int columnIndex,
int scale) |
BigDecimal |
getBigDecimal(String columnLabel) |
BigDecimal |
getBigDecimal(String columnLabel,
int scale) |
InputStream |
getBinaryStream(int columnIndex) |
InputStream |
getBinaryStream(String columnLabel) |
Blob |
getBlob(int columnIndex) |
Blob |
getBlob(String columnLabel) |
boolean |
getBoolean(int columnIndex) |
boolean |
getBoolean(String columnLabel) |
byte |
getByte(int columnIndex) |
byte |
getByte(String columnLabel) |
byte[] |
getBytes(int columnIndex) |
byte[] |
getBytes(String columnLabel) |
Reader |
getCharacterStream(int columnIndex) |
Reader |
getCharacterStream(String columnLabel) |
Clob |
getClob(int columnIndex) |
Clob |
getClob(String columnLabel) |
String |
getCommand() |
int |
getConcurrency() |
protected Connection |
getConnection()
Title: getConnection
Description: 获取RowSet连接对象,如连接不存在,新建连接并返回
|
String |
getCursorName() |
String |
getDataSourceName() |
Date |
getDate(int columnIndex) |
Date |
getDate(int columnIndex,
Calendar cal) |
Date |
getDate(String columnLabel) |
Date |
getDate(String columnLabel,
Calendar cal) |
double |
getDouble(int columnIndex) |
double |
getDouble(String columnLabel) |
boolean |
getEscapeProcessing() |
int |
getFetchDirection() |
int |
getFetchSize() |
float |
getFloat(int columnIndex) |
float |
getFloat(String columnLabel) |
int |
getHoldability() |
int |
getInt(int columnIndex) |
int |
getInt(String columnLabel) |
long |
getLong(int columnIndex) |
long |
getLong(String columnLabel) |
int[] |
getMatchColumnIndexes() |
String[] |
getMatchColumnNames() |
int |
getMaxFieldSize() |
int |
getMaxRows() |
ResultSetMetaData |
getMetaData() |
Reader |
getNCharacterStream(int columnIndex) |
Reader |
getNCharacterStream(String columnLabel) |
NClob |
getNClob(int columnIndex) |
NClob |
getNClob(String columnLabel) |
String |
getNString(int columnIndex) |
String |
getNString(String columnLabel) |
Object |
getObject(int columnIndex) |
<T> T |
getObject(int columnIndex,
Class<T> type) |
Object |
getObject(int columnIndex,
Map<String,Class<?>> maps) |
Object |
getObject(String columnLabel) |
<T> T |
getObject(String columnLabel,
Class<T> type) |
Object |
getObject(String columnLabel,
Map<String,Class<?>> maps) |
String |
getPassword() |
int |
getQueryTimeout() |
Ref |
getRef(int columnIndex) |
Ref |
getRef(String columnLabel) |
int |
getRow() |
RowId |
getRowId(int columnIndex) |
RowId |
getRowId(String columnLabel) |
RowSetMetaData |
getRowSetMetaData()
获取RowSet对象的RowSetMetaData对象
|
short |
getShort(int columnIndex) |
short |
getShort(String columnLabel) |
SQLXML |
getSQLXML(int columnIndex) |
SQLXML |
getSQLXML(String columnLabel) |
Statement |
getStatement() |
String |
getString(int columnIndex) |
String |
getString(String columnLabel) |
Time |
getTime(int columnIndex) |
Time |
getTime(int columnIndex,
Calendar cal) |
Time |
getTime(String columnLabel) |
Time |
getTime(String columnLabel,
Calendar cal) |
Timestamp |
getTimestamp(int columnIndex) |
Timestamp |
getTimestamp(int columnIndex,
Calendar cal) |
Timestamp |
getTimestamp(String columnLabel) |
Timestamp |
getTimestamp(String columnLabel,
Calendar cal) |
int |
getTransactionIsolation() |
int |
getType() |
Map<String,Class<?>> |
getTypeMap() |
InputStream |
getUnicodeStream(int columnIndex) |
InputStream |
getUnicodeStream(String columnLabel) |
String |
getUrl() |
URL |
getURL(int columnIndex) |
URL |
getURL(String columnLabel) |
String |
getUsername() |
SQLWarning |
getWarnings() |
void |
insertRow() |
boolean |
isAfterLast() |
boolean |
isBeforeFirst() |
boolean |
isClosed() |
boolean |
isFirst() |
boolean |
isLast() |
boolean |
isReadOnly() |
boolean |
isWrapperFor(Class<?> arg0) |
boolean |
last() |
void |
moveToCurrentRow() |
void |
moveToInsertRow() |
boolean |
next() |
protected void |
notifyCursorMoved()
Title: notifyCursorMoved
Description: RowSet结果集指针变化触发处理
|
protected void |
notifyRowChanged()
Title: notifyRowChanged
Description: RowSet结果集行数据变化触发处理
|
protected void |
notifyRowSetChanged()
Title: notifyRowSetChanged
Description: RowSet结果集数据变化触发处理
|
boolean |
previous() |
void |
refreshRow() |
boolean |
relative(int row) |
void |
removeRowSetListener(RowSetListener listener) |
boolean |
rowDeleted() |
boolean |
rowInserted() |
boolean |
rowUpdated() |
void |
setArray(int parameterIndex,
Array x) |
void |
setAsciiStream(int parameterIndex,
InputStream x) |
void |
setAsciiStream(int parameterIndex,
InputStream x,
int length) |
void |
setAsciiStream(String parameterName,
InputStream x) |
void |
setAsciiStream(String parameterName,
InputStream x,
int length) |
void |
setBigDecimal(int parameterIndex,
BigDecimal x) |
void |
setBigDecimal(String parameterName,
BigDecimal x) |
void |
setBinaryStream(int parameterIndex,
InputStream x) |
void |
setBinaryStream(int parameterIndex,
InputStream x,
int length) |
void |
setBinaryStream(String parameterName,
InputStream x) |
void |
setBinaryStream(String parameterName,
InputStream x,
int length) |
void |
setBlob(int parameterIndex,
Blob x) |
void |
setBlob(int parameterIndex,
InputStream inputStream) |
void |
setBlob(int parameterIndex,
InputStream inputStream,
long length) |
void |
setBlob(String parameterName,
Blob x) |
void |
setBlob(String parameterName,
InputStream inputStream) |
void |
setBlob(String parameterName,
InputStream inputStream,
long length) |
void |
setBoolean(int parameterIndex,
boolean x) |
void |
setBoolean(String parameterName,
boolean x) |
void |
setByte(int parameterIndex,
byte x) |
void |
setByte(String parameterName,
byte x) |
void |
setBytes(int parameterIndex,
byte[] x) |
void |
setBytes(String parameterName,
byte[] x) |
void |
setCharacterStream(int parameterIndex,
Reader reader) |
void |
setCharacterStream(int parameterIndex,
Reader reader,
int length) |
void |
setCharacterStream(String parameterName,
Reader reader) |
void |
setCharacterStream(String parameterName,
Reader reader,
int length) |
void |
setClob(int parameterIndex,
Clob x) |
void |
setClob(int parameterIndex,
Reader reader) |
void |
setClob(int parameterIndex,
Reader reader,
long length) |
void |
setClob(String parameterName,
Clob x) |
void |
setClob(String parameterName,
Reader reader) |
void |
setClob(String parameterName,
Reader reader,
long length) |
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 |
setDate(String parameterName,
Date x) |
void |
setDate(String parameterName,
Date x,
Calendar cal) |
void |
setDouble(int parameterIndex,
double x) |
void |
setDouble(String parameterName,
double x) |
void |
setEscapeProcessing(boolean enable) |
void |
setFetchDirection(int direction) |
void |
setFetchSize(int size) |
void |
setFloat(int parameterIndex,
float x) |
void |
setFloat(String parameterName,
float x) |
void |
setInt(int parameterIndex,
int x) |
void |
setInt(String parameterName,
int x) |
void |
setLong(int parameterIndex,
long x) |
void |
setLong(String parameterName,
long x) |
void |
setMatchColumn(int var1)
-------------------------------- joinable --------------------------------
|
void |
setMatchColumn(int[] var1) |
void |
setMatchColumn(String var1) |
void |
setMatchColumn(String[] var1) |
void |
setMaxFieldSize(int max) |
void |
setMaxRows(int max) |
void |
setNCharacterStream(int parameterIndex,
Reader value) |
void |
setNCharacterStream(int parameterIndex,
Reader value,
long length) |
void |
setNCharacterStream(String parameterName,
Reader value) |
void |
setNCharacterStream(String parameterName,
Reader value,
long length) |
void |
setNClob(int parameterIndex,
NClob value) |
void |
setNClob(int parameterIndex,
Reader reader) |
void |
setNClob(int parameterIndex,
Reader reader,
long length) |
void |
setNClob(String parameterName,
NClob value) |
void |
setNClob(String parameterName,
Reader reader) |
void |
setNClob(String parameterName,
Reader reader,
long length) |
void |
setNString(int parameterIndex,
String value) |
void |
setNString(String parameterName,
String value) |
void |
setNull(int parameterIndex,
int sqlType) |
void |
setNull(int paramIndex,
int sqlType,
String typeName) |
void |
setNull(String parameterName,
int sqlType) |
void |
setNull(String parameterName,
int sqlType,
String typeName) |
void |
setObject(int parameterIndex,
Object x) |
void |
setObject(int parameterIndex,
Object x,
int targetSqlType) |
void |
setObject(int parameterIndex,
Object x,
int targetSqlType,
int scaleOrLength) |
void |
setObject(String parameterName,
Object x) |
void |
setObject(String parameterName,
Object x,
int targetSqlType) |
void |
setObject(String parameterName,
Object x,
int targetSqlType,
int scale) |
void |
setPassword(String password) |
void |
setQueryTimeout(int seconds) |
void |
setReadOnly(boolean value) |
void |
setRef(int i,
Ref x) |
void |
setRowId(int parameterIndex,
RowId x) |
void |
setRowId(String parameterName,
RowId x) |
void |
setShort(int parameterIndex,
short x) |
void |
setShort(String parameterName,
short x) |
void |
setSQLXML(int parameterIndex,
SQLXML xmlObject) |
void |
setSQLXML(String parameterName,
SQLXML xmlObject) |
void |
setString(int parameterIndex,
String x) |
void |
setString(String parameterName,
String x) |
void |
setTime(int parameterIndex,
Time x) |
void |
setTime(int parameterIndex,
Time x,
Calendar cal) |
void |
setTime(String parameterName,
Time x) |
void |
setTime(String parameterName,
Time x,
Calendar cal) |
void |
setTimestamp(int parameterIndex,
Timestamp x) |
void |
setTimestamp(int parameterIndex,
Timestamp x,
Calendar cal) |
void |
setTimestamp(String parameterName,
Timestamp x) |
void |
setTimestamp(String parameterName,
Timestamp x,
Calendar cal) |
void |
setTransactionIsolation(int level) |
void |
setType(int type) |
void |
setTypeMap(Map<String,Class<?>> map) |
void |
setURL(int parameterIndex,
URL x) |
void |
setUrl(String url) |
void |
setUsername(String name) |
void |
unsetMatchColumn(int var1) |
void |
unsetMatchColumn(int[] var1) |
void |
unsetMatchColumn(String var1) |
void |
unsetMatchColumn(String[] var1) |
<T> T |
unwrap(Class<T> arg0) |
void |
updateArray(int columnIndex,
Array array) |
void |
updateArray(String columnLabel,
Array array) |
void |
updateAsciiStream(int columnIndex,
InputStream input) |
void |
updateAsciiStream(int columnIndex,
InputStream input,
int length) |
void |
updateAsciiStream(int columnIndex,
InputStream input,
long length) |
void |
updateAsciiStream(String columnLabel,
InputStream input) |
void |
updateAsciiStream(String columnLabel,
InputStream input,
int length) |
void |
updateAsciiStream(String columnLabel,
InputStream input,
long length) |
void |
updateBigDecimal(int columnIndex,
BigDecimal x) |
void |
updateBigDecimal(String columnLabel,
BigDecimal x) |
void |
updateBinaryStream(int columnIndex,
InputStream input) |
void |
updateBinaryStream(int columnIndex,
InputStream input,
int length) |
void |
updateBinaryStream(int columnIndex,
InputStream input,
long length) |
void |
updateBinaryStream(String columnLabel,
InputStream input) |
void |
updateBinaryStream(String columnLabel,
InputStream input,
int length) |
void |
updateBinaryStream(String columnLabel,
InputStream input,
long length) |
void |
updateBlob(int columnIndex,
Blob blob) |
void |
updateBlob(int columnIndex,
InputStream input) |
void |
updateBlob(int columnIndex,
InputStream input,
long length) |
void |
updateBlob(String columnLabel,
Blob blob) |
void |
updateBlob(String columnLabel,
InputStream input) |
void |
updateBlob(String columnLabel,
InputStream input,
long length) |
void |
updateBoolean(int columnIndex,
boolean x) |
void |
updateBoolean(String columnLabel,
boolean x) |
void |
updateByte(int columnIndex,
byte x) |
void |
updateByte(String columnLabel,
byte x) |
void |
updateBytes(int columnIndex,
byte[] x) |
void |
updateBytes(String columnLabel,
byte[] x) |
void |
updateCharacterStream(int columnIndex,
Reader reader) |
void |
updateCharacterStream(int columnIndex,
Reader reader,
int length) |
void |
updateCharacterStream(int columnIndex,
Reader reader,
long length) |
void |
updateCharacterStream(String columnLabel,
Reader reader) |
void |
updateCharacterStream(String columnLabel,
Reader reader,
int length) |
void |
updateCharacterStream(String columnLabel,
Reader reader,
long length) |
void |
updateClob(int columnIndex,
Clob clob) |
void |
updateClob(int columnIndex,
Reader reader) |
void |
updateClob(int columnIndex,
Reader reader,
long length) |
void |
updateClob(String columnLabel,
Clob clob) |
void |
updateClob(String columnLabel,
Reader reader) |
void |
updateClob(String columnLabel,
Reader reader,
long length) |
void |
updateDate(int columnIndex,
Date x) |
void |
updateDate(String columnLabel,
Date x) |
void |
updateDouble(int columnIndex,
double x) |
void |
updateDouble(String columnLabel,
double x) |
void |
updateFloat(int columnIndex,
float x) |
void |
updateFloat(String columnLabel,
float x) |
void |
updateInt(int columnIndex,
int x) |
void |
updateInt(String columnLabel,
int x) |
void |
updateLong(int columnIndex,
long x) |
void |
updateLong(String columnLabel,
long x) |
void |
updateNCharacterStream(int columnIndex,
Reader reader) |
void |
updateNCharacterStream(int columnIndex,
Reader reader,
long length) |
void |
updateNCharacterStream(String columnLabel,
Reader reader) |
void |
updateNCharacterStream(String columnLabel,
Reader reader,
long length) |
void |
updateNClob(int columnIndex,
NClob nclob) |
void |
updateNClob(int columnIndex,
Reader reader) |
void |
updateNClob(int columnIndex,
Reader reader,
long length) |
void |
updateNClob(String columnLabel,
NClob nClob) |
void |
updateNClob(String columnLabel,
Reader reader) |
void |
updateNClob(String columnLabel,
Reader reader,
long length) |
void |
updateNString(int columnIndex,
String nString) |
void |
updateNString(String columnLabel,
String nString) |
void |
updateNull(int columnIndex) |
void |
updateNull(String columnLabel) |
void |
updateObject(int columnIndex,
Object x) |
void |
updateObject(int columnIndex,
Object x,
int scaleOrLength) |
void |
updateObject(String columnLabel,
Object x) |
void |
updateObject(String columnLabel,
Object x,
int scaleOrLength) |
void |
updateRef(int columnIndex,
Ref x) |
void |
updateRef(String columnLabel,
Ref x) |
void |
updateRow() |
void |
updateRowId(int columnIndex,
RowId x) |
void |
updateRowId(String columnLabel,
RowId x) |
void |
updateShort(int columnIndex,
short x) |
void |
updateShort(String columnLabel,
short x) |
void |
updateSQLXML(int columnIndex,
SQLXML xmlObject) |
void |
updateSQLXML(String columnLabel,
SQLXML xmlObject) |
void |
updateString(int columnIndex,
String x) |
void |
updateString(String columnLabel,
String x) |
void |
updateTime(int columnIndex,
Time x) |
void |
updateTime(String columnLabel,
Time x) |
void |
updateTimestamp(int columnIndex,
Timestamp x) |
void |
updateTimestamp(String columnLabel,
Timestamp x) |
boolean |
wasNull() |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitupdateObject, updateObject, updateObject, updateObjectprotected Connection rowsetConnection
protected CallableStatement rowCstm
protected ResultSet innerRS
protected RowSetEvent event
protected String command
protected String url
protected String username
protected String password
protected Properties props
protected int rowsetType
protected int concurrency
protected int maxFieldSize
protected int maxRows
protected int queryTimeout
protected int fetchSize
protected boolean readOnly
protected int fetchDirection
protected boolean isClosed
protected Vector<RowSetListener> eventListener
protected RowSetMetaData rowRsmd
protected String dataSourceName
protected boolean driverloaded
public RowSetImpl()
public RowSetImpl(Connection initConn)
public boolean absolute(int row)
throws SQLException
absolute 在接口中 ResultSetSQLExceptionpublic void afterLast()
throws SQLException
afterLast 在接口中 ResultSetSQLExceptionpublic void beforeFirst()
throws SQLException
beforeFirst 在接口中 ResultSetSQLExceptionpublic void cancelRowUpdates()
throws SQLException
cancelRowUpdates 在接口中 ResultSetSQLExceptionpublic void clearWarnings()
throws SQLException
clearWarnings 在接口中 ResultSetSQLExceptionpublic void close()
throws SQLException
close 在接口中 AutoCloseableclose 在接口中 ResultSetSQLExceptionpublic void deleteRow()
throws SQLException
deleteRow 在接口中 ResultSetSQLExceptionpublic int findColumn(String columnLabel) throws SQLException
findColumn 在接口中 ResultSetSQLExceptionpublic boolean first()
throws SQLException
first 在接口中 ResultSetSQLExceptionpublic Array getArray(int columnIndex) throws SQLException
getArray 在接口中 ResultSetSQLExceptionpublic Array getArray(String columnLabel) throws SQLException
getArray 在接口中 ResultSetSQLExceptionpublic InputStream getAsciiStream(int columnIndex) throws SQLException
getAsciiStream 在接口中 ResultSetSQLExceptionpublic InputStream getAsciiStream(String columnLabel) throws SQLException
getAsciiStream 在接口中 ResultSetSQLExceptionpublic BigDecimal getBigDecimal(int columnIndex) throws SQLException
getBigDecimal 在接口中 ResultSetSQLExceptionpublic BigDecimal getBigDecimal(String columnLabel) throws SQLException
getBigDecimal 在接口中 ResultSetSQLExceptionpublic BigDecimal getBigDecimal(int columnIndex, int scale) throws SQLException
getBigDecimal 在接口中 ResultSetSQLExceptionpublic BigDecimal getBigDecimal(String columnLabel, int scale) throws SQLException
getBigDecimal 在接口中 ResultSetSQLExceptionpublic InputStream getBinaryStream(int columnIndex) throws SQLException
getBinaryStream 在接口中 ResultSetSQLExceptionpublic InputStream getBinaryStream(String columnLabel) throws SQLException
getBinaryStream 在接口中 ResultSetSQLExceptionpublic Blob getBlob(int columnIndex) throws SQLException
getBlob 在接口中 ResultSetSQLExceptionpublic Blob getBlob(String columnLabel) throws SQLException
getBlob 在接口中 ResultSetSQLExceptionpublic boolean getBoolean(int columnIndex)
throws SQLException
getBoolean 在接口中 ResultSetSQLExceptionpublic boolean getBoolean(String columnLabel) throws SQLException
getBoolean 在接口中 ResultSetSQLExceptionpublic byte getByte(int columnIndex)
throws SQLException
getByte 在接口中 ResultSetSQLExceptionpublic byte getByte(String columnLabel) throws SQLException
getByte 在接口中 ResultSetSQLExceptionpublic byte[] getBytes(int columnIndex)
throws SQLException
getBytes 在接口中 ResultSetSQLExceptionpublic byte[] getBytes(String columnLabel) throws SQLException
getBytes 在接口中 ResultSetSQLExceptionpublic Reader getCharacterStream(int columnIndex) throws SQLException
getCharacterStream 在接口中 ResultSetSQLExceptionpublic Reader getCharacterStream(String columnLabel) throws SQLException
getCharacterStream 在接口中 ResultSetSQLExceptionpublic Clob getClob(int columnIndex) throws SQLException
getClob 在接口中 ResultSetSQLExceptionpublic Clob getClob(String columnLabel) throws SQLException
getClob 在接口中 ResultSetSQLExceptionpublic int getConcurrency()
throws SQLException
getConcurrency 在接口中 ResultSetSQLExceptionpublic String getCursorName() throws SQLException
getCursorName 在接口中 ResultSetSQLExceptionpublic Date getDate(int columnIndex) throws SQLException
getDate 在接口中 ResultSetSQLExceptionpublic Date getDate(String columnLabel) throws SQLException
getDate 在接口中 ResultSetSQLExceptionpublic Date getDate(int columnIndex, Calendar cal) throws SQLException
getDate 在接口中 ResultSetSQLExceptionpublic Date getDate(String columnLabel, Calendar cal) throws SQLException
getDate 在接口中 ResultSetSQLExceptionpublic double getDouble(int columnIndex)
throws SQLException
getDouble 在接口中 ResultSetSQLExceptionpublic double getDouble(String columnLabel) throws SQLException
getDouble 在接口中 ResultSetSQLExceptionpublic int getFetchDirection()
throws SQLException
getFetchDirection 在接口中 ResultSetSQLExceptionpublic int getFetchSize()
throws SQLException
getFetchSize 在接口中 ResultSetSQLExceptionpublic float getFloat(int columnIndex)
throws SQLException
getFloat 在接口中 ResultSetSQLExceptionpublic float getFloat(String columnLabel) throws SQLException
getFloat 在接口中 ResultSetSQLExceptionpublic int getHoldability()
throws SQLException
getHoldability 在接口中 ResultSetSQLExceptionpublic int getInt(int columnIndex)
throws SQLException
getInt 在接口中 ResultSetSQLExceptionpublic int getInt(String columnLabel) throws SQLException
getInt 在接口中 ResultSetSQLExceptionpublic long getLong(int columnIndex)
throws SQLException
getLong 在接口中 ResultSetSQLExceptionpublic long getLong(String columnLabel) throws SQLException
getLong 在接口中 ResultSetSQLExceptionpublic ResultSetMetaData getMetaData() throws SQLException
getMetaData 在接口中 ResultSetSQLExceptionpublic Reader getNCharacterStream(int columnIndex) throws SQLException
getNCharacterStream 在接口中 ResultSetSQLExceptionpublic Reader getNCharacterStream(String columnLabel) throws SQLException
getNCharacterStream 在接口中 ResultSetSQLExceptionpublic NClob getNClob(int columnIndex) throws SQLException
getNClob 在接口中 ResultSetSQLExceptionpublic NClob getNClob(String columnLabel) throws SQLException
getNClob 在接口中 ResultSetSQLExceptionpublic String getNString(int columnIndex) throws SQLException
getNString 在接口中 ResultSetSQLExceptionpublic String getNString(String columnLabel) throws SQLException
getNString 在接口中 ResultSetSQLExceptionpublic Object getObject(int columnIndex) throws SQLException
getObject 在接口中 ResultSetSQLExceptionpublic Object getObject(String columnLabel) throws SQLException
getObject 在接口中 ResultSetSQLExceptionpublic Object getObject(int columnIndex, Map<String,Class<?>> maps) throws SQLException
getObject 在接口中 ResultSetSQLExceptionpublic Object getObject(String columnLabel, Map<String,Class<?>> maps) throws SQLException
getObject 在接口中 ResultSetSQLExceptionpublic Ref getRef(int columnIndex) throws SQLException
getRef 在接口中 ResultSetSQLExceptionpublic Ref getRef(String columnLabel) throws SQLException
getRef 在接口中 ResultSetSQLExceptionpublic int getRow()
throws SQLException
getRow 在接口中 ResultSetSQLExceptionpublic RowId getRowId(int columnIndex) throws SQLException
getRowId 在接口中 ResultSetSQLExceptionpublic RowId getRowId(String columnLabel) throws SQLException
getRowId 在接口中 ResultSetSQLExceptionpublic SQLXML getSQLXML(int columnIndex) throws SQLException
getSQLXML 在接口中 ResultSetSQLExceptionpublic SQLXML getSQLXML(String columnLabel) throws SQLException
getSQLXML 在接口中 ResultSetSQLExceptionpublic short getShort(int columnIndex)
throws SQLException
getShort 在接口中 ResultSetSQLExceptionpublic short getShort(String columnLabel) throws SQLException
getShort 在接口中 ResultSetSQLExceptionpublic Statement getStatement() throws SQLException
getStatement 在接口中 ResultSetSQLExceptionpublic String getString(int columnIndex) throws SQLException
getString 在接口中 ResultSetSQLExceptionpublic String getString(String columnLabel) throws SQLException
getString 在接口中 ResultSetSQLExceptionpublic Time getTime(int columnIndex) throws SQLException
getTime 在接口中 ResultSetSQLExceptionpublic Time getTime(String columnLabel) throws SQLException
getTime 在接口中 ResultSetSQLExceptionpublic Time getTime(int columnIndex, Calendar cal) throws SQLException
getTime 在接口中 ResultSetSQLExceptionpublic Time getTime(String columnLabel, Calendar cal) throws SQLException
getTime 在接口中 ResultSetSQLExceptionpublic Timestamp getTimestamp(int columnIndex) throws SQLException
getTimestamp 在接口中 ResultSetSQLExceptionpublic Timestamp getTimestamp(String columnLabel) throws SQLException
getTimestamp 在接口中 ResultSetSQLExceptionpublic Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException
getTimestamp 在接口中 ResultSetSQLExceptionpublic Timestamp getTimestamp(String columnLabel, Calendar cal) throws SQLException
getTimestamp 在接口中 ResultSetSQLExceptionpublic int getType()
throws SQLException
getType 在接口中 ResultSetSQLExceptionpublic URL getURL(int columnIndex) throws SQLException
getURL 在接口中 ResultSetSQLExceptionpublic URL getURL(String columnLabel) throws SQLException
getURL 在接口中 ResultSetSQLExceptionpublic InputStream getUnicodeStream(int columnIndex) throws SQLException
getUnicodeStream 在接口中 ResultSetSQLExceptionpublic InputStream getUnicodeStream(String columnLabel) throws SQLException
getUnicodeStream 在接口中 ResultSetSQLExceptionpublic SQLWarning getWarnings() throws SQLException
getWarnings 在接口中 ResultSetSQLExceptionpublic void insertRow()
throws SQLException
insertRow 在接口中 ResultSetSQLExceptionpublic boolean isAfterLast()
throws SQLException
isAfterLast 在接口中 ResultSetSQLExceptionpublic boolean isBeforeFirst()
throws SQLException
isBeforeFirst 在接口中 ResultSetSQLExceptionpublic boolean isClosed()
throws SQLException
isClosed 在接口中 ResultSetSQLExceptionpublic boolean isFirst()
throws SQLException
isFirst 在接口中 ResultSetSQLExceptionpublic boolean isLast()
throws SQLException
isLast 在接口中 ResultSetSQLExceptionpublic boolean last()
throws SQLException
last 在接口中 ResultSetSQLExceptionpublic void moveToCurrentRow()
throws SQLException
moveToCurrentRow 在接口中 ResultSetSQLExceptionpublic void moveToInsertRow()
throws SQLException
moveToInsertRow 在接口中 ResultSetSQLExceptionpublic boolean next()
throws SQLException
next 在接口中 ResultSetSQLExceptionpublic boolean previous()
throws SQLException
previous 在接口中 ResultSetSQLExceptionpublic void refreshRow()
throws SQLException
refreshRow 在接口中 ResultSetSQLExceptionpublic boolean relative(int row)
throws SQLException
relative 在接口中 ResultSetSQLExceptionpublic boolean rowDeleted()
throws SQLException
rowDeleted 在接口中 ResultSetSQLExceptionpublic boolean rowInserted()
throws SQLException
rowInserted 在接口中 ResultSetSQLExceptionpublic boolean rowUpdated()
throws SQLException
rowUpdated 在接口中 ResultSetSQLExceptionpublic void setFetchDirection(int direction)
throws SQLException
setFetchDirection 在接口中 ResultSetSQLExceptionpublic void setFetchSize(int size)
throws SQLException
setFetchSize 在接口中 ResultSetSQLExceptionpublic void updateArray(int columnIndex,
Array array)
throws SQLException
updateArray 在接口中 ResultSetSQLExceptionpublic void updateArray(String columnLabel, Array array) throws SQLException
updateArray 在接口中 ResultSetSQLExceptionpublic void updateAsciiStream(int columnIndex,
InputStream input)
throws SQLException
updateAsciiStream 在接口中 ResultSetSQLExceptionpublic void updateAsciiStream(String columnLabel, InputStream input) throws SQLException
updateAsciiStream 在接口中 ResultSetSQLExceptionpublic void updateAsciiStream(int columnIndex,
InputStream input,
int length)
throws SQLException
updateAsciiStream 在接口中 ResultSetSQLExceptionpublic void updateAsciiStream(String columnLabel, InputStream input, int length) throws SQLException
updateAsciiStream 在接口中 ResultSetSQLExceptionpublic void updateAsciiStream(int columnIndex,
InputStream input,
long length)
throws SQLException
updateAsciiStream 在接口中 ResultSetSQLExceptionpublic void updateAsciiStream(String columnLabel, InputStream input, long length) throws SQLException
updateAsciiStream 在接口中 ResultSetSQLExceptionpublic void updateBigDecimal(int columnIndex,
BigDecimal x)
throws SQLException
updateBigDecimal 在接口中 ResultSetSQLExceptionpublic void updateBigDecimal(String columnLabel, BigDecimal x) throws SQLException
updateBigDecimal 在接口中 ResultSetSQLExceptionpublic void updateBinaryStream(int columnIndex,
InputStream input)
throws SQLException
updateBinaryStream 在接口中 ResultSetSQLExceptionpublic void updateBinaryStream(String columnLabel, InputStream input) throws SQLException
updateBinaryStream 在接口中 ResultSetSQLExceptionpublic void updateBinaryStream(int columnIndex,
InputStream input,
int length)
throws SQLException
updateBinaryStream 在接口中 ResultSetSQLExceptionpublic void updateBinaryStream(String columnLabel, InputStream input, int length) throws SQLException
updateBinaryStream 在接口中 ResultSetSQLExceptionpublic void updateBinaryStream(int columnIndex,
InputStream input,
long length)
throws SQLException
updateBinaryStream 在接口中 ResultSetSQLExceptionpublic void updateBinaryStream(String columnLabel, InputStream input, long length) throws SQLException
updateBinaryStream 在接口中 ResultSetSQLExceptionpublic void updateBlob(int columnIndex,
Blob blob)
throws SQLException
updateBlob 在接口中 ResultSetSQLExceptionpublic void updateBlob(String columnLabel, Blob blob) throws SQLException
updateBlob 在接口中 ResultSetSQLExceptionpublic void updateBlob(int columnIndex,
InputStream input)
throws SQLException
updateBlob 在接口中 ResultSetSQLExceptionpublic void updateBlob(String columnLabel, InputStream input) throws SQLException
updateBlob 在接口中 ResultSetSQLExceptionpublic void updateBlob(int columnIndex,
InputStream input,
long length)
throws SQLException
updateBlob 在接口中 ResultSetSQLExceptionpublic void updateBlob(String columnLabel, InputStream input, long length) throws SQLException
updateBlob 在接口中 ResultSetSQLExceptionpublic void updateBoolean(int columnIndex,
boolean x)
throws SQLException
updateBoolean 在接口中 ResultSetSQLExceptionpublic void updateBoolean(String columnLabel, boolean x) throws SQLException
updateBoolean 在接口中 ResultSetSQLExceptionpublic void updateByte(int columnIndex,
byte x)
throws SQLException
updateByte 在接口中 ResultSetSQLExceptionpublic void updateByte(String columnLabel, byte x) throws SQLException
updateByte 在接口中 ResultSetSQLExceptionpublic void updateBytes(int columnIndex,
byte[] x)
throws SQLException
updateBytes 在接口中 ResultSetSQLExceptionpublic void updateBytes(String columnLabel, byte[] x) throws SQLException
updateBytes 在接口中 ResultSetSQLExceptionpublic void updateCharacterStream(int columnIndex,
Reader reader)
throws SQLException
updateCharacterStream 在接口中 ResultSetSQLExceptionpublic void updateCharacterStream(String columnLabel, Reader reader) throws SQLException
updateCharacterStream 在接口中 ResultSetSQLExceptionpublic void updateCharacterStream(int columnIndex,
Reader reader,
int length)
throws SQLException
updateCharacterStream 在接口中 ResultSetSQLExceptionpublic void updateCharacterStream(String columnLabel, Reader reader, int length) throws SQLException
updateCharacterStream 在接口中 ResultSetSQLExceptionpublic void updateCharacterStream(int columnIndex,
Reader reader,
long length)
throws SQLException
updateCharacterStream 在接口中 ResultSetSQLExceptionpublic void updateCharacterStream(String columnLabel, Reader reader, long length) throws SQLException
updateCharacterStream 在接口中 ResultSetSQLExceptionpublic void updateClob(int columnIndex,
Clob clob)
throws SQLException
updateClob 在接口中 ResultSetSQLExceptionpublic void updateClob(String columnLabel, Clob clob) throws SQLException
updateClob 在接口中 ResultSetSQLExceptionpublic void updateClob(int columnIndex,
Reader reader)
throws SQLException
updateClob 在接口中 ResultSetSQLExceptionpublic void updateClob(String columnLabel, Reader reader) throws SQLException
updateClob 在接口中 ResultSetSQLExceptionpublic void updateClob(int columnIndex,
Reader reader,
long length)
throws SQLException
updateClob 在接口中 ResultSetSQLExceptionpublic void updateClob(String columnLabel, Reader reader, long length) throws SQLException
updateClob 在接口中 ResultSetSQLExceptionpublic void updateDate(int columnIndex,
Date x)
throws SQLException
updateDate 在接口中 ResultSetSQLExceptionpublic void updateDate(String columnLabel, Date x) throws SQLException
updateDate 在接口中 ResultSetSQLExceptionpublic void updateDouble(int columnIndex,
double x)
throws SQLException
updateDouble 在接口中 ResultSetSQLExceptionpublic void updateDouble(String columnLabel, double x) throws SQLException
updateDouble 在接口中 ResultSetSQLExceptionpublic void updateFloat(int columnIndex,
float x)
throws SQLException
updateFloat 在接口中 ResultSetSQLExceptionpublic void updateFloat(String columnLabel, float x) throws SQLException
updateFloat 在接口中 ResultSetSQLExceptionpublic void updateInt(int columnIndex,
int x)
throws SQLException
updateInt 在接口中 ResultSetSQLExceptionpublic void updateInt(String columnLabel, int x) throws SQLException
updateInt 在接口中 ResultSetSQLExceptionpublic void updateLong(int columnIndex,
long x)
throws SQLException
updateLong 在接口中 ResultSetSQLExceptionpublic void updateLong(String columnLabel, long x) throws SQLException
updateLong 在接口中 ResultSetSQLExceptionpublic void updateNCharacterStream(int columnIndex,
Reader reader)
throws SQLException
updateNCharacterStream 在接口中 ResultSetSQLExceptionpublic void updateNCharacterStream(String columnLabel, Reader reader) throws SQLException
updateNCharacterStream 在接口中 ResultSetSQLExceptionpublic void updateNCharacterStream(int columnIndex,
Reader reader,
long length)
throws SQLException
updateNCharacterStream 在接口中 ResultSetSQLExceptionpublic void updateNCharacterStream(String columnLabel, Reader reader, long length) throws SQLException
updateNCharacterStream 在接口中 ResultSetSQLExceptionpublic void updateNClob(int columnIndex,
NClob nclob)
throws SQLException
updateNClob 在接口中 ResultSetSQLExceptionpublic void updateNClob(String columnLabel, NClob nClob) throws SQLException
updateNClob 在接口中 ResultSetSQLExceptionpublic void updateNClob(int columnIndex,
Reader reader)
throws SQLException
updateNClob 在接口中 ResultSetSQLExceptionpublic void updateNClob(String columnLabel, Reader reader) throws SQLException
updateNClob 在接口中 ResultSetSQLExceptionpublic <T> T getObject(int columnIndex,
Class<T> type)
throws SQLException
getObject 在接口中 ResultSetSQLExceptionpublic <T> T getObject(String columnLabel, Class<T> type) throws SQLException
getObject 在接口中 ResultSetSQLExceptionpublic void updateNClob(int columnIndex,
Reader reader,
long length)
throws SQLException
updateNClob 在接口中 ResultSetSQLExceptionpublic void updateNClob(String columnLabel, Reader reader, long length) throws SQLException
updateNClob 在接口中 ResultSetSQLExceptionpublic void updateNString(int columnIndex,
String nString)
throws SQLException
updateNString 在接口中 ResultSetSQLExceptionpublic void updateNString(String columnLabel, String nString) throws SQLException
updateNString 在接口中 ResultSetSQLExceptionpublic void updateNull(int columnIndex)
throws SQLException
updateNull 在接口中 ResultSetSQLExceptionpublic void updateNull(String columnLabel) throws SQLException
updateNull 在接口中 ResultSetSQLExceptionpublic void updateObject(int columnIndex,
Object x)
throws SQLException
updateObject 在接口中 ResultSetSQLExceptionpublic void updateObject(String columnLabel, Object x) throws SQLException
updateObject 在接口中 ResultSetSQLExceptionpublic void updateObject(int columnIndex,
Object x,
int scaleOrLength)
throws SQLException
updateObject 在接口中 ResultSetSQLExceptionpublic void updateObject(String columnLabel, Object x, int scaleOrLength) throws SQLException
updateObject 在接口中 ResultSetSQLExceptionpublic void updateRef(int columnIndex,
Ref x)
throws SQLException
updateRef 在接口中 ResultSetSQLExceptionpublic void updateRef(String columnLabel, Ref x) throws SQLException
updateRef 在接口中 ResultSetSQLExceptionpublic void updateRow()
throws SQLException
updateRow 在接口中 ResultSetSQLExceptionpublic void updateRowId(int columnIndex,
RowId x)
throws SQLException
updateRowId 在接口中 ResultSetSQLExceptionpublic void updateRowId(String columnLabel, RowId x) throws SQLException
updateRowId 在接口中 ResultSetSQLExceptionpublic void updateSQLXML(int columnIndex,
SQLXML xmlObject)
throws SQLException
updateSQLXML 在接口中 ResultSetSQLExceptionpublic void updateSQLXML(String columnLabel, SQLXML xmlObject) throws SQLException
updateSQLXML 在接口中 ResultSetSQLExceptionpublic void updateShort(int columnIndex,
short x)
throws SQLException
updateShort 在接口中 ResultSetSQLExceptionpublic void updateShort(String columnLabel, short x) throws SQLException
updateShort 在接口中 ResultSetSQLExceptionpublic void updateString(int columnIndex,
String x)
throws SQLException
updateString 在接口中 ResultSetSQLExceptionpublic void updateString(String columnLabel, String x) throws SQLException
updateString 在接口中 ResultSetSQLExceptionpublic void updateTime(int columnIndex,
Time x)
throws SQLException
updateTime 在接口中 ResultSetSQLExceptionpublic void updateTime(String columnLabel, Time x) throws SQLException
updateTime 在接口中 ResultSetSQLExceptionpublic void updateTimestamp(int columnIndex,
Timestamp x)
throws SQLException
updateTimestamp 在接口中 ResultSetSQLExceptionpublic void updateTimestamp(String columnLabel, Timestamp x) throws SQLException
updateTimestamp 在接口中 ResultSetSQLExceptionpublic boolean wasNull()
throws SQLException
wasNull 在接口中 ResultSetSQLExceptionpublic boolean isWrapperFor(Class<?> arg0) throws SQLException
isWrapperFor 在接口中 WrapperSQLExceptionpublic <T> T unwrap(Class<T> arg0) throws SQLException
unwrap 在接口中 WrapperSQLExceptionpublic void addRowSetListener(RowSetListener listener)
addRowSetListener 在接口中 RowSetpublic void clearParameters()
throws SQLException
clearParameters 在接口中 RowSetSQLExceptionpublic void execute()
throws SQLException
execute 在接口中 RowSetSQLExceptionpublic String getCommand()
getCommand 在接口中 RowSetpublic String getDataSourceName()
getDataSourceName 在接口中 RowSetpublic boolean getEscapeProcessing()
throws SQLException
getEscapeProcessing 在接口中 RowSetSQLExceptionpublic int getMaxFieldSize()
throws SQLException
getMaxFieldSize 在接口中 RowSetSQLExceptionpublic int getMaxRows()
throws SQLException
getMaxRows 在接口中 RowSetSQLExceptionpublic String getPassword()
getPassword 在接口中 RowSetpublic int getQueryTimeout()
throws SQLException
getQueryTimeout 在接口中 RowSetSQLExceptionpublic int getTransactionIsolation()
getTransactionIsolation 在接口中 RowSetpublic RowSetMetaData getRowSetMetaData() throws SQLException
SQLExceptionpublic Map<String,Class<?>> getTypeMap() throws SQLException
getTypeMap 在接口中 RowSetSQLExceptionpublic String getUrl() throws SQLException
getUrl 在接口中 RowSetSQLExceptionpublic String getUsername()
getUsername 在接口中 RowSetpublic boolean isReadOnly()
isReadOnly 在接口中 RowSetpublic void removeRowSetListener(RowSetListener listener)
removeRowSetListener 在接口中 RowSetprotected void notifyRowSetChanged()
Title: notifyRowSetChanged
Description: RowSet结果集数据变化触发处理
protected void notifyCursorMoved()
Title: notifyCursorMoved
Description: RowSet结果集指针变化触发处理
protected void notifyRowChanged()
Title: notifyRowChanged
Description: RowSet结果集行数据变化触发处理
public void setArray(int parameterIndex,
Array x)
throws SQLException
setArray 在接口中 RowSetSQLExceptionpublic void setAsciiStream(int parameterIndex,
InputStream x)
throws SQLException
setAsciiStream 在接口中 RowSetSQLExceptionpublic void setAsciiStream(String parameterName, InputStream x) throws SQLException
setAsciiStream 在接口中 RowSetSQLExceptionpublic void setAsciiStream(int parameterIndex,
InputStream x,
int length)
throws SQLException
setAsciiStream 在接口中 RowSetSQLExceptionpublic void setAsciiStream(String parameterName, InputStream x, int length) throws SQLException
setAsciiStream 在接口中 RowSetSQLExceptionpublic void setBigDecimal(int parameterIndex,
BigDecimal x)
throws SQLException
setBigDecimal 在接口中 RowSetSQLExceptionpublic void setBigDecimal(String parameterName, BigDecimal x) throws SQLException
setBigDecimal 在接口中 RowSetSQLExceptionpublic void setBinaryStream(int parameterIndex,
InputStream x)
throws SQLException
setBinaryStream 在接口中 RowSetSQLExceptionpublic void setBinaryStream(String parameterName, InputStream x) throws SQLException
setBinaryStream 在接口中 RowSetSQLExceptionpublic void setBinaryStream(int parameterIndex,
InputStream x,
int length)
throws SQLException
setBinaryStream 在接口中 RowSetSQLExceptionpublic void setBinaryStream(String parameterName, InputStream x, int length) throws SQLException
setBinaryStream 在接口中 RowSetSQLExceptionpublic void setBlob(int parameterIndex,
Blob x)
throws SQLException
setBlob 在接口中 RowSetSQLExceptionpublic void setBlob(int parameterIndex,
InputStream inputStream)
throws SQLException
setBlob 在接口中 RowSetSQLExceptionpublic void setBlob(String parameterName, Blob x) throws SQLException
setBlob 在接口中 RowSetSQLExceptionpublic void setBlob(String parameterName, InputStream inputStream) throws SQLException
setBlob 在接口中 RowSetSQLExceptionpublic void setBlob(int parameterIndex,
InputStream inputStream,
long length)
throws SQLException
setBlob 在接口中 RowSetSQLExceptionpublic void setBlob(String parameterName, InputStream inputStream, long length) throws SQLException
setBlob 在接口中 RowSetSQLExceptionpublic void setBoolean(int parameterIndex,
boolean x)
throws SQLException
setBoolean 在接口中 RowSetSQLExceptionpublic void setBoolean(String parameterName, boolean x) throws SQLException
setBoolean 在接口中 RowSetSQLExceptionpublic void setByte(int parameterIndex,
byte x)
throws SQLException
setByte 在接口中 RowSetSQLExceptionpublic void setByte(String parameterName, byte x) throws SQLException
setByte 在接口中 RowSetSQLExceptionpublic void setBytes(int parameterIndex,
byte[] x)
throws SQLException
setBytes 在接口中 RowSetSQLExceptionpublic void setBytes(String parameterName, byte[] x) throws SQLException
setBytes 在接口中 RowSetSQLExceptionpublic void setCharacterStream(int parameterIndex,
Reader reader)
throws SQLException
setCharacterStream 在接口中 RowSetSQLExceptionpublic void setCharacterStream(String parameterName, Reader reader) throws SQLException
setCharacterStream 在接口中 RowSetSQLExceptionpublic void setCharacterStream(int parameterIndex,
Reader reader,
int length)
throws SQLException
setCharacterStream 在接口中 RowSetSQLExceptionpublic void setCharacterStream(String parameterName, Reader reader, int length) throws SQLException
setCharacterStream 在接口中 RowSetSQLExceptionpublic void setClob(int parameterIndex,
Clob x)
throws SQLException
setClob 在接口中 RowSetSQLExceptionpublic void setClob(int parameterIndex,
Reader reader)
throws SQLException
setClob 在接口中 RowSetSQLExceptionpublic void setClob(String parameterName, Clob x) throws SQLException
setClob 在接口中 RowSetSQLExceptionpublic void setClob(String parameterName, Reader reader) throws SQLException
setClob 在接口中 RowSetSQLExceptionpublic void setClob(int parameterIndex,
Reader reader,
long length)
throws SQLException
setClob 在接口中 RowSetSQLExceptionpublic void setClob(String parameterName, Reader reader, long length) throws SQLException
setClob 在接口中 RowSetSQLExceptionpublic void setCommand(String cmd) throws SQLException
setCommand 在接口中 RowSetSQLExceptionpublic void setConcurrency(int concurrency)
throws SQLException
setConcurrency 在接口中 RowSetSQLExceptionpublic void setDataSourceName(String name) throws SQLException
setDataSourceName 在接口中 RowSetSQLExceptionpublic void setDate(int parameterIndex,
Date x)
throws SQLException
setDate 在接口中 RowSetSQLExceptionpublic void setDate(String parameterName, Date x) throws SQLException
setDate 在接口中 RowSetSQLExceptionpublic void setDate(int parameterIndex,
Date x,
Calendar cal)
throws SQLException
setDate 在接口中 RowSetSQLExceptionpublic void setDate(String parameterName, Date x, Calendar cal) throws SQLException
setDate 在接口中 RowSetSQLExceptionpublic void setDouble(int parameterIndex,
double x)
throws SQLException
setDouble 在接口中 RowSetSQLExceptionpublic void setDouble(String parameterName, double x) throws SQLException
setDouble 在接口中 RowSetSQLExceptionpublic void setEscapeProcessing(boolean enable)
throws SQLException
setEscapeProcessing 在接口中 RowSetSQLExceptionpublic void setFloat(int parameterIndex,
float x)
throws SQLException
setFloat 在接口中 RowSetSQLExceptionpublic void setFloat(String parameterName, float x) throws SQLException
setFloat 在接口中 RowSetSQLExceptionpublic void setInt(int parameterIndex,
int x)
throws SQLException
setInt 在接口中 RowSetSQLExceptionpublic void setInt(String parameterName, int x) throws SQLException
setInt 在接口中 RowSetSQLExceptionpublic void setLong(int parameterIndex,
long x)
throws SQLException
setLong 在接口中 RowSetSQLExceptionpublic void setLong(String parameterName, long x) throws SQLException
setLong 在接口中 RowSetSQLExceptionpublic void setMaxFieldSize(int max)
throws SQLException
setMaxFieldSize 在接口中 RowSetSQLExceptionpublic void setMaxRows(int max)
throws SQLException
setMaxRows 在接口中 RowSetSQLExceptionpublic void setNCharacterStream(int parameterIndex,
Reader value)
throws SQLException
setNCharacterStream 在接口中 RowSetSQLExceptionpublic void setNCharacterStream(String parameterName, Reader value) throws SQLException
setNCharacterStream 在接口中 RowSetSQLExceptionpublic void setNCharacterStream(int parameterIndex,
Reader value,
long length)
throws SQLException
setNCharacterStream 在接口中 RowSetSQLExceptionpublic void setNCharacterStream(String parameterName, Reader value, long length) throws SQLException
setNCharacterStream 在接口中 RowSetSQLExceptionpublic void setNClob(String parameterName, NClob value) throws SQLException
setNClob 在接口中 RowSetSQLExceptionpublic void setNClob(String parameterName, Reader reader) throws SQLException
setNClob 在接口中 RowSetSQLExceptionpublic void setNClob(int parameterIndex,
NClob value)
throws SQLException
setNClob 在接口中 RowSetSQLExceptionpublic void setNClob(int parameterIndex,
Reader reader)
throws SQLException
setNClob 在接口中 RowSetSQLExceptionpublic void setNClob(String parameterName, Reader reader, long length) throws SQLException
setNClob 在接口中 RowSetSQLExceptionpublic void setNClob(int parameterIndex,
Reader reader,
long length)
throws SQLException
setNClob 在接口中 RowSetSQLExceptionpublic void setNString(int parameterIndex,
String value)
throws SQLException
setNString 在接口中 RowSetSQLExceptionpublic void setNString(String parameterName, String value) throws SQLException
setNString 在接口中 RowSetSQLExceptionpublic void setNull(int parameterIndex,
int sqlType)
throws SQLException
setNull 在接口中 RowSetSQLExceptionpublic void setNull(String parameterName, int sqlType) throws SQLException
setNull 在接口中 RowSetSQLExceptionpublic void setNull(int paramIndex,
int sqlType,
String typeName)
throws SQLException
setNull 在接口中 RowSetSQLExceptionpublic void setNull(String parameterName, int sqlType, String typeName) throws SQLException
setNull 在接口中 RowSetSQLExceptionpublic void setObject(String parameterName, Object x) throws SQLException
setObject 在接口中 RowSetSQLExceptionpublic void setObject(int parameterIndex,
Object x)
throws SQLException
setObject 在接口中 RowSetSQLExceptionpublic void setObject(int parameterIndex,
Object x,
int targetSqlType)
throws SQLException
setObject 在接口中 RowSetSQLExceptionpublic void setObject(String parameterName, Object x, int targetSqlType) throws SQLException
setObject 在接口中 RowSetSQLExceptionpublic void setObject(int parameterIndex,
Object x,
int targetSqlType,
int scaleOrLength)
throws SQLException
setObject 在接口中 RowSetSQLExceptionpublic void setObject(String parameterName, Object x, int targetSqlType, int scale) throws SQLException
setObject 在接口中 RowSetSQLExceptionpublic void setPassword(String password) throws SQLException
setPassword 在接口中 RowSetSQLExceptionpublic void setQueryTimeout(int seconds)
throws SQLException
setQueryTimeout 在接口中 RowSetSQLExceptionpublic void setReadOnly(boolean value)
throws SQLException
setReadOnly 在接口中 RowSetSQLExceptionpublic void setRef(int i,
Ref x)
throws SQLException
setRef 在接口中 RowSetSQLExceptionpublic void setRowId(int parameterIndex,
RowId x)
throws SQLException
setRowId 在接口中 RowSetSQLExceptionpublic void setRowId(String parameterName, RowId x) throws SQLException
setRowId 在接口中 RowSetSQLExceptionpublic void setSQLXML(int parameterIndex,
SQLXML xmlObject)
throws SQLException
setSQLXML 在接口中 RowSetSQLExceptionpublic void setSQLXML(String parameterName, SQLXML xmlObject) throws SQLException
setSQLXML 在接口中 RowSetSQLExceptionpublic void setShort(int parameterIndex,
short x)
throws SQLException
setShort 在接口中 RowSetSQLExceptionpublic void setShort(String parameterName, short x) throws SQLException
setShort 在接口中 RowSetSQLExceptionpublic void setString(int parameterIndex,
String x)
throws SQLException
setString 在接口中 RowSetSQLExceptionpublic void setString(String parameterName, String x) throws SQLException
setString 在接口中 RowSetSQLExceptionpublic void setTime(int parameterIndex,
Time x)
throws SQLException
setTime 在接口中 RowSetSQLExceptionpublic void setTime(String parameterName, Time x) throws SQLException
setTime 在接口中 RowSetSQLExceptionpublic void setTime(int parameterIndex,
Time x,
Calendar cal)
throws SQLException
setTime 在接口中 RowSetSQLExceptionpublic void setTime(String parameterName, Time x, Calendar cal) throws SQLException
setTime 在接口中 RowSetSQLExceptionpublic void setTimestamp(int parameterIndex,
Timestamp x)
throws SQLException
setTimestamp 在接口中 RowSetSQLExceptionpublic void setTimestamp(String parameterName, Timestamp x) throws SQLException
setTimestamp 在接口中 RowSetSQLExceptionpublic void setTimestamp(int parameterIndex,
Timestamp x,
Calendar cal)
throws SQLException
setTimestamp 在接口中 RowSetSQLExceptionpublic void setTimestamp(String parameterName, Timestamp x, Calendar cal) throws SQLException
setTimestamp 在接口中 RowSetSQLExceptionpublic void setTransactionIsolation(int level)
throws SQLException
setTransactionIsolation 在接口中 RowSetSQLExceptionpublic void setType(int type)
throws SQLException
setType 在接口中 RowSetSQLExceptionpublic void setTypeMap(Map<String,Class<?>> map) throws SQLException
setTypeMap 在接口中 RowSetSQLExceptionpublic void setURL(int parameterIndex,
URL x)
throws SQLException
setURL 在接口中 RowSetSQLExceptionpublic void setUrl(String url) throws SQLException
setUrl 在接口中 RowSetSQLExceptionpublic void setUsername(String name) throws SQLException
setUsername 在接口中 RowSetSQLExceptionprotected Connection getConnection() throws SQLException
Title: getConnection
Description: 获取RowSet连接对象,如连接不存在,新建连接并返回
SQLExceptionprotected void checkRowSetClosed()
throws SQLException
SQLExceptionprotected void checkRowIndexType(int type)
throws SQLException
SQLExceptionprotected void checkRowSetUpdatableType()
throws SQLException
SQLExceptionpublic void setMatchColumn(int var1)
throws SQLException
setMatchColumn 在接口中 JoinableSQLExceptionpublic void setMatchColumn(int[] var1)
throws SQLException
setMatchColumn 在接口中 JoinableSQLExceptionpublic void setMatchColumn(String var1) throws SQLException
setMatchColumn 在接口中 JoinableSQLExceptionpublic void setMatchColumn(String[] var1) throws SQLException
setMatchColumn 在接口中 JoinableSQLExceptionpublic int[] getMatchColumnIndexes()
throws SQLException
getMatchColumnIndexes 在接口中 JoinableSQLExceptionpublic String[] getMatchColumnNames() throws SQLException
getMatchColumnNames 在接口中 JoinableSQLExceptionpublic void unsetMatchColumn(int var1)
throws SQLException
unsetMatchColumn 在接口中 JoinableSQLExceptionpublic void unsetMatchColumn(int[] var1)
throws SQLException
unsetMatchColumn 在接口中 JoinableSQLExceptionpublic void unsetMatchColumn(String var1) throws SQLException
unsetMatchColumn 在接口中 JoinableSQLExceptionpublic void unsetMatchColumn(String[] var1) throws SQLException
unsetMatchColumn 在接口中 JoinableSQLExceptionCopyright © 2025. All rights reserved.