public class JDBCResultSet extends Object implements ResultSet
| 构造器和说明 |
|---|
JDBCResultSet(JDBCConnection conn,
JDBCStatement statement,
com.xxdb.data.EntityBlockReader reader,
String sql) |
JDBCResultSet(JDBCConnection conn,
JDBCStatement statement,
com.xxdb.data.EntityBlockReader reader,
String sql,
int maxRows) |
JDBCResultSet(JDBCConnection conn,
JDBCStatement statement,
com.xxdb.data.Entity entity,
String sql) |
JDBCResultSet(JDBCConnection conn,
JDBCStatement statement,
com.xxdb.data.Entity entity,
String sql,
int maxRows) |
| 限定符和类型 | 方法和说明 |
|---|---|
boolean |
absolute(int columnIndex) |
void |
afterLast() |
void |
beforeFirst() |
void |
cancelRowUpdates() |
void |
clearWarnings() |
void |
close() |
void |
deleteRow() |
int |
findColumn(String columnLabel) |
boolean |
first() |
Array |
getArray(int columnIndex) |
Array |
getArray(String columnLabel) |
InputStream |
getAsciiStream(int columnIndex) |
InputStream |
getAsciiStream(String columnLabel) |
com.xxdb.data.BasicDate |
getBasicDate(int columnIndex) |
com.xxdb.data.BasicDate |
getBasicDate(String columnLabel) |
com.xxdb.data.BasicDateTime |
getBasicDateTime(int columnIndex) |
com.xxdb.data.BasicDateTime |
getBasicDateTime(String columnLabel) |
com.xxdb.data.BasicMinute |
getBasicMinute(int columnIndex) |
com.xxdb.data.BasicMinute |
getBasicMinute(String columnLabel) |
com.xxdb.data.BasicMonth |
getBasicMonth(int columnIndex) |
com.xxdb.data.BasicMonth |
getBasicMonth(String columnLabel) |
com.xxdb.data.BasicNanoTime |
getBasicNanoTime(int columnIndex) |
com.xxdb.data.BasicNanoTime |
getBasicNanoTime(String columnLabel) |
com.xxdb.data.BasicNanoTimestamp |
getBasicNanoTimestamp(int columnIndex) |
com.xxdb.data.BasicNanoTimestamp |
getBasicNanoTimestamp(String columnLabel) |
com.xxdb.data.BasicSecond |
getBasicSecond(int columnIndex) |
com.xxdb.data.BasicSecond |
getBasicSecond(String columnLabel) |
com.xxdb.data.BasicTime |
getBasicTime(int columnIndex) |
com.xxdb.data.BasicTime |
getBasicTime(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) |
int |
getConcurrency() |
String |
getCursorName() |
Date |
getDate(int columnIndex) |
Date |
getDate(int columnIndex,
Calendar calendar) |
Date |
getDate(String columnLabel) |
Date |
getDate(String columnLabel,
Calendar calendar) |
double |
getDouble(int columnIndex) |
double |
getDouble(String columnLabel) |
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) |
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> aClass) |
Object |
getObject(int columnIndex,
Map<String,Class<?>> map) |
Object |
getObject(String columnLabel) |
<T> T |
getObject(String columnLabel,
Class<T> aClass) |
Object |
getObject(String columnLabel,
Map<String,Class<?>> map) |
com.xxdb.data.EntityBlockReader |
getReader() |
Ref |
getRef(int columnIndex) |
Ref |
getRef(String columnLabel) |
com.xxdb.data.Entity |
getResult() |
int |
getRow() |
RowId |
getRowId(int columnIndex) |
RowId |
getRowId(String columnLabel) |
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) |
com.xxdb.data.BasicTable |
getTable() |
Time |
getTime(int columnIndex) |
Time |
getTime(int columnIndex,
Calendar calendar) |
Time |
getTime(String columnLabel) |
Time |
getTime(String columnLabel,
Calendar calendar) |
Timestamp |
getTimestamp(int columnIndex) |
Timestamp |
getTimestamp(int columnIndex,
Calendar calendar) |
Timestamp |
getTimestamp(String columnLabel) |
Timestamp |
getTimestamp(String columnLabel,
Calendar calendar) |
int |
getType() |
InputStream |
getUnicodeStream(int columnIndex) |
InputStream |
getUnicodeStream(String columnLabel) |
URL |
getURL(int columnIndex) |
URL |
getURL(String columnLabel) |
SQLWarning |
getWarnings() |
void |
insertRow() |
boolean |
isAfterLast() |
boolean |
isBeforeFirst() |
boolean |
isClosed() |
boolean |
isFirst() |
boolean |
isLast() |
void |
isUpdatable() |
boolean |
isWrapperFor(Class<?> aClass) |
boolean |
last() |
void |
moveToCurrentRow() |
void |
moveToInsertRow() |
boolean |
next() |
boolean |
previous() |
void |
refreshRow() |
boolean |
relative(int columnIndex) |
boolean |
rowDeleted() |
boolean |
rowInserted() |
boolean |
rowUpdated() |
void |
setFetchDirection(int direction) |
void |
setFetchSize(int rows) |
void |
setReader(com.xxdb.data.EntityBlockReader reader) |
<T> T |
unwrap(Class<T> aClass) |
void |
updateArray(int columnIndex,
Array array) |
void |
updateArray(String columnLabel,
Array array) |
void |
updateAsciiStream(int columnIndex,
InputStream inputStream) |
void |
updateAsciiStream(int columnIndex,
InputStream inputStream,
int columnIndex1) |
void |
updateAsciiStream(int columnIndex,
InputStream inputStream,
long l) |
void |
updateAsciiStream(String columnLabel,
InputStream inputStream) |
void |
updateAsciiStream(String columnLabel,
InputStream inputStream,
int columnIndex) |
void |
updateAsciiStream(String columnLabel,
InputStream inputStream,
long l) |
void |
updateBigDecimal(int columnIndex,
BigDecimal bigDecimal) |
void |
updateBigDecimal(String columnLabel,
BigDecimal bigDecimal) |
void |
updateBinaryStream(int columnIndex,
InputStream inputStream) |
void |
updateBinaryStream(int columnIndex,
InputStream inputStream,
int columnIndex1) |
void |
updateBinaryStream(int columnIndex,
InputStream inputStream,
long l) |
void |
updateBinaryStream(String columnLabel,
InputStream inputStream) |
void |
updateBinaryStream(String columnLabel,
InputStream inputStream,
int columnIndex) |
void |
updateBinaryStream(String columnLabel,
InputStream inputStream,
long l) |
void |
updateBlob(int columnIndex,
Blob blob) |
void |
updateBlob(int columnIndex,
InputStream inputStream) |
void |
updateBlob(int columnIndex,
InputStream inputStream,
long l) |
void |
updateBlob(String columnLabel,
Blob blob) |
void |
updateBlob(String columnLabel,
InputStream inputStream) |
void |
updateBlob(String columnLabel,
InputStream inputStream,
long l) |
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[] bytes) |
void |
updateBytes(String columnLabel,
byte[] bytes) |
void |
updateCharacterStream(int columnIndex,
Reader reader) |
void |
updateCharacterStream(int columnIndex,
Reader reader,
int columnIndex1) |
void |
updateCharacterStream(int columnIndex,
Reader reader,
long l) |
void |
updateCharacterStream(String columnLabel,
Reader reader) |
void |
updateCharacterStream(String columnLabel,
Reader reader,
int columnIndex) |
void |
updateCharacterStream(String columnLabel,
Reader reader,
long l) |
void |
updateClob(int columnIndex,
Clob clob) |
void |
updateClob(int columnIndex,
Reader reader) |
void |
updateClob(int columnIndex,
Reader reader,
long l) |
void |
updateClob(String columnLabel,
Clob clob) |
void |
updateClob(String columnLabel,
Reader reader) |
void |
updateClob(String columnLabel,
Reader reader,
long l) |
void |
updateDate(int columnIndex,
Date date) |
void |
updateDate(String columnLabel,
Date date) |
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 l) |
void |
updateNCharacterStream(String columnLabel,
Reader reader) |
void |
updateNCharacterStream(String columnLabel,
Reader reader,
long l) |
void |
updateNClob(int columnIndex,
NClob nClob) |
void |
updateNClob(int columnIndex,
Reader reader) |
void |
updateNClob(int columnIndex,
Reader reader,
long l) |
void |
updateNClob(String columnLabel,
NClob nClob) |
void |
updateNClob(String columnLabel,
Reader reader) |
void |
updateNClob(String columnLabel,
Reader reader,
long l) |
void |
updateNString(int columnIndex,
String columnLabel) |
void |
updateNString(String columnLabel,
String columnLabel1) |
void |
updateNull(int columnIndex) |
void |
updateNull(String columnLabel) |
void |
updateObject(int columnIndex,
Object o) |
void |
updateObject(int columnIndex,
Object o,
int columnIndex1) |
void |
updateObject(String columnLabel,
Object o) |
void |
updateObject(String columnLabel,
Object o,
int columnIndex) |
void |
updateRef(int columnIndex,
Ref ref) |
void |
updateRef(String columnLabel,
Ref ref) |
void |
updateRow() |
void |
updateRowId(int columnIndex,
RowId rowId) |
void |
updateRowId(String columnLabel,
RowId rowId) |
void |
updateShort(int columnIndex,
short x) |
void |
updateShort(String columnLabel,
short x) |
void |
updateSQLXML(int columnIndex,
SQLXML sqlxml) |
void |
updateSQLXML(String columnLabel,
SQLXML sqlxml) |
void |
updateString(int columnIndex,
String x) |
void |
updateString(String columnLabel,
String x) |
void |
updateTime(int columnIndex,
Time time) |
void |
updateTime(String columnLabel,
Time time) |
void |
updateTimestamp(int columnIndex,
Timestamp timestamp) |
void |
updateTimestamp(String columnLabel,
Timestamp timestamp) |
boolean |
wasNull() |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitupdateObject, updateObject, updateObject, updateObjectpublic JDBCResultSet(JDBCConnection conn, JDBCStatement statement, com.xxdb.data.Entity entity, String sql) throws SQLException
SQLExceptionpublic JDBCResultSet(JDBCConnection conn, JDBCStatement statement, com.xxdb.data.Entity entity, String sql, int maxRows) throws SQLException
SQLExceptionpublic JDBCResultSet(JDBCConnection conn, JDBCStatement statement, com.xxdb.data.EntityBlockReader reader, String sql, int maxRows) throws SQLException
SQLExceptionpublic JDBCResultSet(JDBCConnection conn, JDBCStatement statement, com.xxdb.data.EntityBlockReader reader, String sql) throws SQLException
SQLExceptionpublic boolean next()
throws SQLException
next 在接口中 ResultSetSQLExceptionpublic void close()
throws SQLException
close 在接口中 AutoCloseableclose 在接口中 ResultSetSQLExceptionpublic boolean wasNull()
throws SQLException
wasNull 在接口中 ResultSetSQLExceptionpublic Object getObject(int columnIndex) throws SQLException
getObject 在接口中 ResultSetSQLExceptionpublic String getString(int columnIndex) throws SQLException
getString 在接口中 ResultSetSQLExceptionpublic boolean getBoolean(int columnIndex)
throws SQLException
getBoolean 在接口中 ResultSetSQLExceptionpublic byte getByte(int columnIndex)
throws SQLException
getByte 在接口中 ResultSetSQLExceptionpublic short getShort(int columnIndex)
throws SQLException
getShort 在接口中 ResultSetSQLExceptionpublic int getInt(int columnIndex)
throws SQLException
getInt 在接口中 ResultSetSQLExceptionpublic long getLong(int columnIndex)
throws SQLException
getLong 在接口中 ResultSetSQLExceptionpublic float getFloat(int columnIndex)
throws SQLException
getFloat 在接口中 ResultSetSQLExceptionpublic double getDouble(int columnIndex)
throws SQLException
getDouble 在接口中 ResultSetSQLExceptionpublic BigDecimal getBigDecimal(int columnIndex) throws SQLException
getBigDecimal 在接口中 ResultSetSQLException@Deprecated public BigDecimal getBigDecimal(int columnIndex, int scale) throws SQLException
getBigDecimal 在接口中 ResultSetSQLExceptionpublic byte[] getBytes(int columnIndex)
throws SQLException
getBytes 在接口中 ResultSetSQLExceptionpublic Date getDate(int columnIndex) throws SQLException
getDate 在接口中 ResultSetSQLExceptionpublic Time getTime(int columnIndex) throws SQLException
getTime 在接口中 ResultSetSQLExceptionpublic Timestamp getTimestamp(int columnIndex) throws SQLException
getTimestamp 在接口中 ResultSetSQLExceptionpublic InputStream getAsciiStream(int columnIndex) throws SQLException
getAsciiStream 在接口中 ResultSetSQLExceptionpublic InputStream getUnicodeStream(int columnIndex) throws SQLException
getUnicodeStream 在接口中 ResultSetSQLExceptionpublic InputStream getBinaryStream(int columnIndex) throws SQLException
getBinaryStream 在接口中 ResultSetSQLExceptionpublic Object getObject(String columnLabel) throws SQLException
getObject 在接口中 ResultSetSQLExceptionpublic boolean getBoolean(String columnLabel) throws SQLException
getBoolean 在接口中 ResultSetSQLExceptionpublic byte getByte(String columnLabel) throws SQLException
getByte 在接口中 ResultSetSQLExceptionpublic short getShort(String columnLabel) throws SQLException
getShort 在接口中 ResultSetSQLExceptionpublic int getInt(String columnLabel) throws SQLException
getInt 在接口中 ResultSetSQLExceptionpublic long getLong(String columnLabel) throws SQLException
getLong 在接口中 ResultSetSQLExceptionpublic float getFloat(String columnLabel) throws SQLException
getFloat 在接口中 ResultSetSQLExceptionpublic double getDouble(String columnLabel) throws SQLException
getDouble 在接口中 ResultSetSQLExceptionpublic String getString(String columnLabel) throws SQLException
getString 在接口中 ResultSetSQLException@Deprecated public BigDecimal getBigDecimal(String columnLabel, int scale) throws SQLException
getBigDecimal 在接口中 ResultSetSQLExceptionpublic byte[] getBytes(String columnLabel) throws SQLException
getBytes 在接口中 ResultSetSQLExceptionpublic Date getDate(String columnLabel) throws SQLException
getDate 在接口中 ResultSetSQLExceptionpublic Time getTime(String columnLabel) throws SQLException
getTime 在接口中 ResultSetSQLExceptionpublic Timestamp getTimestamp(String columnLabel) throws SQLException
getTimestamp 在接口中 ResultSetSQLExceptionpublic InputStream getAsciiStream(String columnLabel) throws SQLException
getAsciiStream 在接口中 ResultSetSQLExceptionpublic InputStream getUnicodeStream(String columnLabel) throws SQLException
getUnicodeStream 在接口中 ResultSetSQLExceptionpublic InputStream getBinaryStream(String columnLabel) throws SQLException
getBinaryStream 在接口中 ResultSetSQLExceptionpublic SQLWarning getWarnings() throws SQLException
getWarnings 在接口中 ResultSetSQLExceptionpublic void clearWarnings()
throws SQLException
clearWarnings 在接口中 ResultSetSQLExceptionpublic String getCursorName() throws SQLException
getCursorName 在接口中 ResultSetSQLExceptionpublic ResultSetMetaData getMetaData() throws SQLException
getMetaData 在接口中 ResultSetSQLExceptionpublic Object getObject(int columnIndex, Map<String,Class<?>> map) throws SQLException
getObject 在接口中 ResultSetSQLExceptionpublic Object getObject(String columnLabel, Map<String,Class<?>> map) throws SQLException
getObject 在接口中 ResultSetSQLExceptionpublic <T> T getObject(int columnIndex,
Class<T> aClass)
throws SQLException
getObject 在接口中 ResultSetSQLExceptionpublic <T> T getObject(String columnLabel, Class<T> aClass) throws SQLException
getObject 在接口中 ResultSetSQLExceptionpublic int findColumn(String columnLabel) throws SQLException
findColumn 在接口中 ResultSetSQLExceptionpublic Reader getCharacterStream(int columnIndex) throws SQLException
getCharacterStream 在接口中 ResultSetSQLExceptionpublic Reader getCharacterStream(String columnLabel) throws SQLException
getCharacterStream 在接口中 ResultSetSQLExceptionpublic BigDecimal getBigDecimal(String columnLabel) throws SQLException
getBigDecimal 在接口中 ResultSetSQLExceptionpublic boolean isBeforeFirst()
throws SQLException
isBeforeFirst 在接口中 ResultSetSQLExceptionpublic boolean isAfterLast()
throws SQLException
isAfterLast 在接口中 ResultSetSQLExceptionpublic boolean isFirst()
throws SQLException
isFirst 在接口中 ResultSetSQLExceptionpublic boolean isLast()
throws SQLException
isLast 在接口中 ResultSetSQLExceptionpublic void beforeFirst()
throws SQLException
beforeFirst 在接口中 ResultSetSQLExceptionpublic void afterLast()
throws SQLException
afterLast 在接口中 ResultSetSQLExceptionpublic boolean first()
throws SQLException
first 在接口中 ResultSetSQLExceptionpublic boolean last()
throws SQLException
last 在接口中 ResultSetSQLExceptionpublic int getRow()
throws SQLException
getRow 在接口中 ResultSetSQLExceptionpublic boolean absolute(int columnIndex)
throws SQLException
absolute 在接口中 ResultSetSQLExceptionpublic boolean relative(int columnIndex)
throws SQLException
relative 在接口中 ResultSetSQLExceptionpublic boolean previous()
throws SQLException
previous 在接口中 ResultSetSQLExceptionpublic void setFetchDirection(int direction)
throws SQLException
setFetchDirection 在接口中 ResultSetSQLExceptionpublic int getFetchDirection()
throws SQLException
getFetchDirection 在接口中 ResultSetSQLExceptionpublic void setFetchSize(int rows)
throws SQLException
setFetchSize 在接口中 ResultSetSQLExceptionpublic int getFetchSize()
throws SQLException
getFetchSize 在接口中 ResultSetSQLExceptionpublic int getType()
throws SQLException
getType 在接口中 ResultSetSQLExceptionpublic int getConcurrency()
throws SQLException
getConcurrency 在接口中 ResultSetSQLExceptionpublic com.xxdb.data.EntityBlockReader getReader()
public void setReader(com.xxdb.data.EntityBlockReader reader)
public boolean rowUpdated()
throws SQLException
rowUpdated 在接口中 ResultSetSQLExceptionpublic boolean rowInserted()
throws SQLException
rowInserted 在接口中 ResultSetSQLExceptionpublic boolean rowDeleted()
throws SQLException
rowDeleted 在接口中 ResultSetSQLExceptionpublic void updateNull(int columnIndex)
throws SQLException
updateNull 在接口中 ResultSetSQLExceptionpublic void updateBoolean(int columnIndex,
boolean x)
throws SQLException
updateBoolean 在接口中 ResultSetSQLExceptionpublic void updateByte(int columnIndex,
byte x)
throws SQLException
updateByte 在接口中 ResultSetSQLExceptionpublic void updateShort(int columnIndex,
short x)
throws SQLException
updateShort 在接口中 ResultSetSQLExceptionpublic void updateInt(int columnIndex,
int x)
throws SQLException
updateInt 在接口中 ResultSetSQLExceptionpublic void updateLong(int columnIndex,
long x)
throws SQLException
updateLong 在接口中 ResultSetSQLExceptionpublic void updateFloat(int columnIndex,
float x)
throws SQLException
updateFloat 在接口中 ResultSetSQLExceptionpublic void updateDouble(int columnIndex,
double x)
throws SQLException
updateDouble 在接口中 ResultSetSQLExceptionpublic void updateBigDecimal(int columnIndex,
BigDecimal bigDecimal)
throws SQLException
updateBigDecimal 在接口中 ResultSetSQLExceptionpublic void updateString(int columnIndex,
String x)
throws SQLException
updateString 在接口中 ResultSetSQLExceptionpublic void updateBytes(int columnIndex,
byte[] bytes)
throws SQLException
updateBytes 在接口中 ResultSetSQLExceptionpublic void updateDate(int columnIndex,
Date date)
throws SQLException
updateDate 在接口中 ResultSetSQLExceptionpublic void updateTime(int columnIndex,
Time time)
throws SQLException
updateTime 在接口中 ResultSetSQLExceptionpublic void updateTimestamp(int columnIndex,
Timestamp timestamp)
throws SQLException
updateTimestamp 在接口中 ResultSetSQLExceptionpublic void updateAsciiStream(int columnIndex,
InputStream inputStream,
int columnIndex1)
throws SQLException
updateAsciiStream 在接口中 ResultSetSQLExceptionpublic void updateBinaryStream(int columnIndex,
InputStream inputStream,
int columnIndex1)
throws SQLException
updateBinaryStream 在接口中 ResultSetSQLExceptionpublic void updateCharacterStream(int columnIndex,
Reader reader,
int columnIndex1)
throws SQLException
updateCharacterStream 在接口中 ResultSetSQLExceptionpublic void updateObject(int columnIndex,
Object o,
int columnIndex1)
throws SQLException
updateObject 在接口中 ResultSetSQLExceptionpublic void updateObject(int columnIndex,
Object o)
throws SQLException
updateObject 在接口中 ResultSetSQLExceptionpublic void updateNull(String columnLabel) throws SQLException
updateNull 在接口中 ResultSetSQLExceptionpublic void updateBoolean(String columnLabel, boolean x) throws SQLException
updateBoolean 在接口中 ResultSetSQLExceptionpublic void updateByte(String columnLabel, byte x) throws SQLException
updateByte 在接口中 ResultSetSQLExceptionpublic void updateShort(String columnLabel, short x) throws SQLException
updateShort 在接口中 ResultSetSQLExceptionpublic void updateInt(String columnLabel, int x) throws SQLException
updateInt 在接口中 ResultSetSQLExceptionpublic void updateLong(String columnLabel, long x) throws SQLException
updateLong 在接口中 ResultSetSQLExceptionpublic void updateFloat(String columnLabel, float x) throws SQLException
updateFloat 在接口中 ResultSetSQLExceptionpublic void updateDouble(String columnLabel, double x) throws SQLException
updateDouble 在接口中 ResultSetSQLExceptionpublic void updateBigDecimal(String columnLabel, BigDecimal bigDecimal) throws SQLException
updateBigDecimal 在接口中 ResultSetSQLExceptionpublic void updateString(String columnLabel, String x) throws SQLException
updateString 在接口中 ResultSetSQLExceptionpublic void updateBytes(String columnLabel, byte[] bytes) throws SQLException
updateBytes 在接口中 ResultSetSQLExceptionpublic void updateDate(String columnLabel, Date date) throws SQLException
updateDate 在接口中 ResultSetSQLExceptionpublic void updateTime(String columnLabel, Time time) throws SQLException
updateTime 在接口中 ResultSetSQLExceptionpublic void updateTimestamp(String columnLabel, Timestamp timestamp) throws SQLException
updateTimestamp 在接口中 ResultSetSQLExceptionpublic void updateAsciiStream(String columnLabel, InputStream inputStream, int columnIndex) throws SQLException
updateAsciiStream 在接口中 ResultSetSQLExceptionpublic void updateBinaryStream(String columnLabel, InputStream inputStream, int columnIndex) throws SQLException
updateBinaryStream 在接口中 ResultSetSQLExceptionpublic void updateCharacterStream(String columnLabel, Reader reader, int columnIndex) throws SQLException
updateCharacterStream 在接口中 ResultSetSQLExceptionpublic void updateObject(String columnLabel, Object o, int columnIndex) throws SQLException
updateObject 在接口中 ResultSetSQLExceptionpublic void updateObject(String columnLabel, Object o) throws SQLException
updateObject 在接口中 ResultSetSQLExceptionpublic void insertRow()
throws SQLException
insertRow 在接口中 ResultSetSQLExceptionpublic void updateRow()
throws SQLException
updateRow 在接口中 ResultSetSQLExceptionpublic void deleteRow()
throws SQLException
deleteRow 在接口中 ResultSetSQLExceptionpublic void refreshRow()
throws SQLException
refreshRow 在接口中 ResultSetSQLExceptionpublic void cancelRowUpdates()
throws SQLException
cancelRowUpdates 在接口中 ResultSetSQLExceptionpublic void moveToInsertRow()
throws SQLException
moveToInsertRow 在接口中 ResultSetSQLExceptionpublic void moveToCurrentRow()
throws SQLException
moveToCurrentRow 在接口中 ResultSetSQLExceptionpublic Statement getStatement() throws SQLException
getStatement 在接口中 ResultSetSQLExceptionpublic Ref getRef(int columnIndex) throws SQLException
getRef 在接口中 ResultSetSQLExceptionpublic Blob getBlob(int columnIndex) throws SQLException
getBlob 在接口中 ResultSetSQLExceptionpublic Clob getClob(int columnIndex) throws SQLException
getClob 在接口中 ResultSetSQLExceptionpublic Array getArray(int columnIndex) throws SQLException
getArray 在接口中 ResultSetSQLExceptionpublic Ref getRef(String columnLabel) throws SQLException
getRef 在接口中 ResultSetSQLExceptionpublic Blob getBlob(String columnLabel) throws SQLException
getBlob 在接口中 ResultSetSQLExceptionpublic Clob getClob(String columnLabel) throws SQLException
getClob 在接口中 ResultSetSQLExceptionpublic Array getArray(String columnLabel) throws SQLException
getArray 在接口中 ResultSetSQLExceptionpublic Date getDate(int columnIndex, Calendar calendar) throws SQLException
getDate 在接口中 ResultSetSQLExceptionpublic Date getDate(String columnLabel, Calendar calendar) throws SQLException
getDate 在接口中 ResultSetSQLExceptionpublic Time getTime(int columnIndex, Calendar calendar) throws SQLException
getTime 在接口中 ResultSetSQLExceptionpublic Time getTime(String columnLabel, Calendar calendar) throws SQLException
getTime 在接口中 ResultSetSQLExceptionpublic Timestamp getTimestamp(int columnIndex, Calendar calendar) throws SQLException
getTimestamp 在接口中 ResultSetSQLExceptionpublic Timestamp getTimestamp(String columnLabel, Calendar calendar) throws SQLException
getTimestamp 在接口中 ResultSetSQLExceptionpublic URL getURL(int columnIndex) throws SQLException
getURL 在接口中 ResultSetSQLExceptionpublic URL getURL(String columnLabel) throws SQLException
getURL 在接口中 ResultSetSQLExceptionpublic void updateRef(int columnIndex,
Ref ref)
throws SQLException
updateRef 在接口中 ResultSetSQLExceptionpublic void updateRef(String columnLabel, Ref ref) throws SQLException
updateRef 在接口中 ResultSetSQLExceptionpublic void updateBlob(int columnIndex,
Blob blob)
throws SQLException
updateBlob 在接口中 ResultSetSQLExceptionpublic void updateBlob(String columnLabel, Blob blob) throws SQLException
updateBlob 在接口中 ResultSetSQLExceptionpublic void updateClob(int columnIndex,
Clob clob)
throws SQLException
updateClob 在接口中 ResultSetSQLExceptionpublic void updateClob(String columnLabel, Clob clob) throws SQLException
updateClob 在接口中 ResultSetSQLExceptionpublic void updateArray(int columnIndex,
Array array)
throws SQLException
updateArray 在接口中 ResultSetSQLExceptionpublic void updateArray(String columnLabel, Array array) throws SQLException
updateArray 在接口中 ResultSetSQLExceptionpublic RowId getRowId(int columnIndex) throws SQLException
getRowId 在接口中 ResultSetSQLExceptionpublic RowId getRowId(String columnLabel) throws SQLException
getRowId 在接口中 ResultSetSQLExceptionpublic void updateRowId(int columnIndex,
RowId rowId)
throws SQLException
updateRowId 在接口中 ResultSetSQLExceptionpublic void updateRowId(String columnLabel, RowId rowId) throws SQLException
updateRowId 在接口中 ResultSetSQLExceptionpublic int getHoldability()
throws SQLException
getHoldability 在接口中 ResultSetSQLExceptionpublic boolean isClosed()
throws SQLException
isClosed 在接口中 ResultSetSQLExceptionpublic void updateNString(int columnIndex,
String columnLabel)
throws SQLException
updateNString 在接口中 ResultSetSQLExceptionpublic void updateNString(String columnLabel, String columnLabel1) throws SQLException
updateNString 在接口中 ResultSetSQLExceptionpublic void updateNClob(int columnIndex,
NClob nClob)
throws SQLException
updateNClob 在接口中 ResultSetSQLExceptionpublic void updateNClob(String columnLabel, NClob nClob) throws SQLException
updateNClob 在接口中 ResultSetSQLExceptionpublic NClob getNClob(int columnIndex) throws SQLException
getNClob 在接口中 ResultSetSQLExceptionpublic NClob getNClob(String columnLabel) throws SQLException
getNClob 在接口中 ResultSetSQLExceptionpublic SQLXML getSQLXML(int columnIndex) throws SQLException
getSQLXML 在接口中 ResultSetSQLExceptionpublic SQLXML getSQLXML(String columnLabel) throws SQLException
getSQLXML 在接口中 ResultSetSQLExceptionpublic void updateSQLXML(int columnIndex,
SQLXML sqlxml)
throws SQLException
updateSQLXML 在接口中 ResultSetSQLExceptionpublic void updateSQLXML(String columnLabel, SQLXML sqlxml) throws SQLException
updateSQLXML 在接口中 ResultSetSQLExceptionpublic String getNString(int columnIndex) throws SQLException
getNString 在接口中 ResultSetSQLExceptionpublic String getNString(String columnLabel) throws SQLException
getNString 在接口中 ResultSetSQLExceptionpublic Reader getNCharacterStream(int columnIndex) throws SQLException
getNCharacterStream 在接口中 ResultSetSQLExceptionpublic Reader getNCharacterStream(String columnLabel) throws SQLException
getNCharacterStream 在接口中 ResultSetSQLExceptionpublic void updateNCharacterStream(int columnIndex,
Reader reader,
long l)
throws SQLException
updateNCharacterStream 在接口中 ResultSetSQLExceptionpublic void updateNCharacterStream(String columnLabel, Reader reader, long l) throws SQLException
updateNCharacterStream 在接口中 ResultSetSQLExceptionpublic void updateAsciiStream(int columnIndex,
InputStream inputStream,
long l)
throws SQLException
updateAsciiStream 在接口中 ResultSetSQLExceptionpublic void updateBinaryStream(int columnIndex,
InputStream inputStream,
long l)
throws SQLException
updateBinaryStream 在接口中 ResultSetSQLExceptionpublic void updateCharacterStream(int columnIndex,
Reader reader,
long l)
throws SQLException
updateCharacterStream 在接口中 ResultSetSQLExceptionpublic void updateAsciiStream(String columnLabel, InputStream inputStream, long l) throws SQLException
updateAsciiStream 在接口中 ResultSetSQLExceptionpublic void updateBinaryStream(String columnLabel, InputStream inputStream, long l) throws SQLException
updateBinaryStream 在接口中 ResultSetSQLExceptionpublic void updateCharacterStream(String columnLabel, Reader reader, long l) throws SQLException
updateCharacterStream 在接口中 ResultSetSQLExceptionpublic void updateBlob(int columnIndex,
InputStream inputStream,
long l)
throws SQLException
updateBlob 在接口中 ResultSetSQLExceptionpublic void updateBlob(String columnLabel, InputStream inputStream, long l) throws SQLException
updateBlob 在接口中 ResultSetSQLExceptionpublic void updateClob(int columnIndex,
Reader reader,
long l)
throws SQLException
updateClob 在接口中 ResultSetSQLExceptionpublic void updateClob(String columnLabel, Reader reader, long l) throws SQLException
updateClob 在接口中 ResultSetSQLExceptionpublic void updateNClob(int columnIndex,
Reader reader,
long l)
throws SQLException
updateNClob 在接口中 ResultSetSQLExceptionpublic void updateNClob(String columnLabel, Reader reader, long l) throws SQLException
updateNClob 在接口中 ResultSetSQLExceptionpublic void updateNCharacterStream(int columnIndex,
Reader reader)
throws SQLException
updateNCharacterStream 在接口中 ResultSetSQLExceptionpublic void updateNCharacterStream(String columnLabel, Reader reader) throws SQLException
updateNCharacterStream 在接口中 ResultSetSQLExceptionpublic void updateAsciiStream(int columnIndex,
InputStream inputStream)
throws SQLException
updateAsciiStream 在接口中 ResultSetSQLExceptionpublic void updateBinaryStream(int columnIndex,
InputStream inputStream)
throws SQLException
updateBinaryStream 在接口中 ResultSetSQLExceptionpublic void updateCharacterStream(int columnIndex,
Reader reader)
throws SQLException
updateCharacterStream 在接口中 ResultSetSQLExceptionpublic void updateAsciiStream(String columnLabel, InputStream inputStream) throws SQLException
updateAsciiStream 在接口中 ResultSetSQLExceptionpublic void updateBinaryStream(String columnLabel, InputStream inputStream) throws SQLException
updateBinaryStream 在接口中 ResultSetSQLExceptionpublic void updateCharacterStream(String columnLabel, Reader reader) throws SQLException
updateCharacterStream 在接口中 ResultSetSQLExceptionpublic void updateBlob(int columnIndex,
InputStream inputStream)
throws SQLException
updateBlob 在接口中 ResultSetSQLExceptionpublic void updateBlob(String columnLabel, InputStream inputStream) throws SQLException
updateBlob 在接口中 ResultSetSQLExceptionpublic void updateClob(int columnIndex,
Reader reader)
throws SQLException
updateClob 在接口中 ResultSetSQLExceptionpublic void updateClob(String columnLabel, Reader reader) throws SQLException
updateClob 在接口中 ResultSetSQLExceptionpublic void updateNClob(int columnIndex,
Reader reader)
throws SQLException
updateNClob 在接口中 ResultSetSQLExceptionpublic void updateNClob(String columnLabel, Reader reader) throws SQLException
updateNClob 在接口中 ResultSetSQLExceptionpublic <T> T unwrap(Class<T> aClass) throws SQLException
unwrap 在接口中 WrapperSQLExceptionpublic boolean isWrapperFor(Class<?> aClass) throws SQLException
isWrapperFor 在接口中 WrapperSQLExceptionpublic com.xxdb.data.Entity getResult()
throws SQLException
SQLExceptionpublic com.xxdb.data.BasicDate getBasicDate(String columnLabel) throws SQLException
SQLExceptionpublic com.xxdb.data.BasicMonth getBasicMonth(String columnLabel) throws SQLException
SQLExceptionpublic com.xxdb.data.BasicTime getBasicTime(String columnLabel) throws SQLException
SQLExceptionpublic com.xxdb.data.BasicMinute getBasicMinute(String columnLabel) throws SQLException
SQLExceptionpublic com.xxdb.data.BasicSecond getBasicSecond(String columnLabel) throws SQLException
SQLExceptionpublic com.xxdb.data.BasicDateTime getBasicDateTime(String columnLabel) throws SQLException
SQLExceptionpublic com.xxdb.data.BasicNanoTime getBasicNanoTime(String columnLabel) throws SQLException
SQLExceptionpublic com.xxdb.data.BasicNanoTimestamp getBasicNanoTimestamp(String columnLabel) throws SQLException
SQLExceptionpublic com.xxdb.data.BasicDate getBasicDate(int columnIndex)
throws SQLException
SQLExceptionpublic com.xxdb.data.BasicMonth getBasicMonth(int columnIndex)
throws SQLException
SQLExceptionpublic com.xxdb.data.BasicTime getBasicTime(int columnIndex)
throws SQLException
SQLExceptionpublic com.xxdb.data.BasicMinute getBasicMinute(int columnIndex)
throws SQLException
SQLExceptionpublic com.xxdb.data.BasicSecond getBasicSecond(int columnIndex)
throws SQLException
SQLExceptionpublic com.xxdb.data.BasicDateTime getBasicDateTime(int columnIndex)
throws SQLException
SQLExceptionpublic com.xxdb.data.BasicNanoTime getBasicNanoTime(int columnIndex)
throws SQLException
SQLExceptionpublic com.xxdb.data.BasicNanoTimestamp getBasicNanoTimestamp(int columnIndex)
throws SQLException
SQLExceptionpublic com.xxdb.data.BasicTable getTable()
public void isUpdatable()
throws SQLException
SQLExceptionCopyright © 2023 dolphindb. All rights reserved.