|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.jdbwc.core.WCResultSetUpdates
com.jdbwc.core.WCResultSet
public class WCResultSet
Extended JDBC-API implementation for java.sql.ResultSet.
See this packages ResultSet interface for extension method details.
Field Summary |
---|
Fields inherited from class com.jdbwc.core.WCResultSetUpdates |
---|
myConnection, myDbType, myPointer, myRow, myRows, mySQL, myStatement |
Fields inherited from interface java.sql.ResultSet |
---|
CLOSE_CURSORS_AT_COMMIT, CONCUR_READ_ONLY, CONCUR_UPDATABLE, FETCH_FORWARD, FETCH_REVERSE, FETCH_UNKNOWN, HOLD_CURSORS_OVER_COMMIT, TYPE_FORWARD_ONLY, TYPE_SCROLL_INSENSITIVE, TYPE_SCROLL_SENSITIVE |
Constructor Summary | |
---|---|
protected |
WCResultSet(WCConnection connection)
|
protected |
WCResultSet(WCConnection connection,
WCStatement statement)
|
protected |
WCResultSet(WCConnection connection,
WCStatement statement,
java.lang.String sql)
|
protected |
WCResultSet(WCConnection connection,
WCStatement statement,
java.lang.String sql,
com.ozdevworx.dtype.DataHandler results)
|
Method Summary | ||
---|---|---|
boolean |
absolute(int row)
|
|
void |
addRow(com.ozdevworx.dtype.DataHandler row)
Adds a new data row to this ResultSet Object. |
|
void |
afterLast()
|
|
void |
beforeFirst()
|
|
void |
cancelRowUpdates()
|
|
void |
clearWarnings()
|
|
void |
close()
|
|
void |
deleteRow()
|
|
int |
findColumn(java.lang.String columnLabel)
|
|
boolean |
first()
|
|
java.sql.Array |
getArray(int columnIndex)
|
|
java.sql.Array |
getArray(java.lang.String columnLabel)
|
|
java.io.InputStream |
getAsciiStream(int columnIndex)
|
|
java.io.InputStream |
getAsciiStream(java.lang.String columnLabel)
|
|
java.math.BigDecimal |
getBigDecimal(int columnIndex)
|
|
java.math.BigDecimal |
getBigDecimal(int columnIndex,
int scale)
Deprecated. |
|
java.math.BigDecimal |
getBigDecimal(java.lang.String columnLabel)
|
|
java.math.BigDecimal |
getBigDecimal(java.lang.String columnLabel,
int scale)
Deprecated. |
|
java.io.InputStream |
getBinaryStream(int columnIndex)
|
|
java.io.InputStream |
getBinaryStream(java.lang.String columnLabel)
|
|
java.sql.Blob |
getBlob(int columnIndex)
|
|
java.sql.Blob |
getBlob(java.lang.String columnLabel)
|
|
boolean |
getBoolean(int columnIndex)
Values that are considered booleans by this method (cAsE insensitive). |
|
boolean |
getBoolean(java.lang.String columnLabel)
Values that are considered booleans by this method (cAsE insensitive). |
|
byte |
getByte(int columnIndex)
|
|
byte |
getByte(java.lang.String columnLabel)
|
|
byte[] |
getBytes(int columnIndex)
|
|
byte[] |
getBytes(java.lang.String columnLabel)
|
|
java.io.Reader |
getCharacterStream(int columnIndex)
|
|
java.io.Reader |
getCharacterStream(java.lang.String columnLabel)
|
|
java.sql.Clob |
getClob(int columnIndex)
|
|
java.sql.Clob |
getClob(java.lang.String columnLabel)
|
|
int |
getConcurrency()
|
|
java.lang.String |
getCursorName()
|
|
java.sql.Date |
getDate(int columnIndex)
Dates are converted during transit from the server TimeZone to the Hosts TimeZone. NOTE: If this behavior is not desired use getDate(int columnIndex, Calendar cal)
and specify the desired timezone in the Calendar Object. |
|
java.sql.Date |
getDate(int columnIndex,
java.util.Calendar cal)
Specify the desired TimeZone of the output java.sql.Date in the Calendar param. NOTE: If this behavior is not desired use getDate(int columnIndex)
to have Dates automagically converted from the server
TimeZone to the Hosts TimeZone. |
|
java.sql.Date |
getDate(java.lang.String columnLabel)
Dates are converted during transit from the server TimeZone to the Hosts TimeZone. NOTE: If this behavior is not desired use getDate(String columnLabel, Calendar cal)
and specify the desired timezone in the Calendar Object. |
|
java.sql.Date |
getDate(java.lang.String columnLabel,
java.util.Calendar cal)
Specify the desired TimeZone of the output java.sql.Date in the Calendar param. NOTE: If this behavior is not desired use getDate(String columnLabel)
to have Dates automagically converted from the server
TimeZone to the Hosts TimeZone. |
|
protected java.sql.Date |
getDateFromString(java.lang.String dateAsString,
java.util.Calendar targetCal)
A great deal of this method and any supporting methods it uses (including inline comments) were copied or derived from the My-Sql Connector-J Driver (By MySql/Sun/Oracle). |
|
double |
getDouble(int columnIndex)
|
|
double |
getDouble(java.lang.String columnLabel)
|
|
int |
getFetchDirection()
|
|
int |
getFetchSize()
|
|
float |
getFloat(int columnIndex)
|
|
float |
getFloat(java.lang.String columnLabel)
|
|
int |
getHoldability()
|
|
int |
getInt(int columnIndex)
|
|
int |
getInt(java.lang.String columnLabel)
|
|
long |
getLong(int columnIndex)
|
|
long |
getLong(java.lang.String columnLabel)
|
|
java.sql.ResultSetMetaData |
getMetaData()
|
|
java.io.Reader |
getNCharacterStream(int columnIndex)
|
|
java.io.Reader |
getNCharacterStream(java.lang.String columnLabel)
|
|
java.sql.NClob |
getNClob(int columnIndex)
|
|
java.sql.NClob |
getNClob(java.lang.String columnLabel)
|
|
java.lang.String |
getNString(int columnIndex)
|
|
java.lang.String |
getNString(java.lang.String columnLabel)
|
|
java.lang.Object |
getObject(int columnIndex)
|
|
java.lang.Object |
getObject(int arg0,
java.util.Map<java.lang.String,java.lang.Class<?>> arg1)
|
|
java.lang.Object |
getObject(java.lang.String columnLabel)
|
|
java.lang.Object |
getObject(java.lang.String arg0,
java.util.Map<java.lang.String,java.lang.Class<?>> arg1)
|
|
java.sql.Ref |
getRef(int columnIndex)
|
|
java.sql.Ref |
getRef(java.lang.String columnLabel)
|
|
int |
getRow()
|
|
java.sql.RowId |
getRowId(int columnIndex)
|
|
java.sql.RowId |
getRowId(java.lang.String columnLabel)
|
|
short |
getShort(int columnIndex)
|
|
short |
getShort(java.lang.String columnLabel)
|
|
java.sql.SQLXML |
getSQLXML(int columnIndex)
|
|
java.sql.SQLXML |
getSQLXML(java.lang.String columnLabel)
|
|
WCStatement |
getStatement()
|
|
java.lang.String |
getString(int columnIndex)
|
|
java.lang.String |
getString(java.lang.String columnLabel)
|
|
java.sql.Time |
getTime(int columnIndex)
Times are converted during transit, from the server TimeZone to the Hosts TimeZone. NOTE: If this behavior is not desired use getTime(int columnIndex, Calendar cal)
and specify the desired timezone in the Calendar Object. |
|
java.sql.Time |
getTime(int columnIndex,
java.util.Calendar cal)
Specify the desired TimeZone of the output java.sql.Time in the Calendar param. NOTE: If this behavior is not desired use getTime(int columnIndex)
to have Times automagically converted from the server
TimeZone to the Hosts TimeZone. |
|
java.sql.Time |
getTime(java.lang.String columnLabel)
Times are converted during transit, from the server TimeZone to the Hosts TimeZone. NOTE: If this behavior is not desired use getTime(String columnLabel, Calendar cal)
and specify the desired timezone in the Calendar Object. |
|
java.sql.Time |
getTime(java.lang.String columnLabel,
java.util.Calendar cal)
Specify the desired TimeZone of the output java.sql.Time in the Calendar param. NOTE: If this behavior is not desired use getTime(columnLabel)
to have Times automagically converted from the server
TimeZone to the Hosts TimeZone. |
|
protected java.sql.Time |
getTimeFromString(java.lang.String timeAsString,
java.util.Calendar targetCal)
|
|
java.sql.Timestamp |
getTimestamp(int columnIndex)
Timestamps are converted during transit, from the server TimeZone to the Hosts TimeZone. NOTE: If this behavior is not desired use getTimestamp(int columnIndex, Calendar cal)
and specify the desired timezone in the Calendar Object. |
|
java.sql.Timestamp |
getTimestamp(int columnIndex,
java.util.Calendar cal)
Specify the desired TimeZone of the output java.sql.Timestamp in the Calendar param. NOTE: If this behavior is not desired use getTimestamp(int columnIndex)
to have Timestamps automagically converted from the server
TimeZone to the Hosts TimeZone. |
|
java.sql.Timestamp |
getTimestamp(java.lang.String columnLabel)
Timestamps are converted during transit, from the server TimeZone to the Hosts TimeZone. NOTE: If this behavior is not desired use getTimestamp(String columnLabel, Calendar cal)
and specify the desired timezone in the Calendar Object. |
|
java.sql.Timestamp |
getTimestamp(java.lang.String columnLabel,
java.util.Calendar cal)
Specify the desired TimeZone of the output java.sql.Timestamp in the Calendar param. NOTE: If this behavior is not desired use getTimestamp(String columnLabel)
to have Timestamps automagically converted from the server
TimeZone to the Hosts TimeZone. |
|
protected java.sql.Timestamp |
getTimestampFromString(java.lang.String timestampValue,
java.util.Calendar targetCal)
|
|
int |
getType()
|
|
java.io.InputStream |
getUnicodeStream(int columnIndex)
Deprecated. |
|
java.io.InputStream |
getUnicodeStream(java.lang.String columnLabel)
Deprecated. |
|
java.net.URL |
getURL(int columnIndex)
|
|
java.net.URL |
getURL(java.lang.String columnLabel)
|
|
java.sql.SQLWarning |
getWarnings()
|
|
void |
insertRow()
|
|
boolean |
isAfterLast()
|
|
boolean |
isBeforeFirst()
|
|
boolean |
isClosed()
|
|
boolean |
isFirst()
|
|
boolean |
isLast()
|
|
boolean |
isWrapperFor(java.lang.Class<?> iface)
|
|
boolean |
last()
|
|
void |
moveToCurrentRow()
|
|
void |
moveToInsertRow()
|
|
boolean |
next()
|
|
boolean |
previous()
|
|
void |
refreshRow()
|
|
boolean |
relative(int rows)
|
|
boolean |
rowDeleted()
|
|
boolean |
rowInserted()
|
|
boolean |
rowUpdated()
|
|
void |
setFetchDirection(int direction)
|
|
void |
setFetchSize(int rows)
|
|
|
unwrap(java.lang.Class<T> iface)
|
|
boolean |
wasNull()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface java.sql.ResultSet |
---|
updateArray, updateArray, updateAsciiStream, updateAsciiStream, updateAsciiStream, updateAsciiStream, updateAsciiStream, updateAsciiStream, updateBigDecimal, updateBigDecimal, updateBinaryStream, updateBinaryStream, updateBinaryStream, updateBinaryStream, updateBinaryStream, updateBinaryStream, updateBlob, updateBlob, updateBlob, updateBlob, updateBlob, updateBlob, updateBoolean, updateBoolean, updateByte, updateByte, updateBytes, updateBytes, updateCharacterStream, updateCharacterStream, updateCharacterStream, updateCharacterStream, updateCharacterStream, updateCharacterStream, updateClob, updateClob, updateClob, updateClob, updateClob, updateClob, updateDate, updateDate, updateDouble, updateDouble, updateFloat, updateFloat, updateInt, updateInt, updateLong, updateLong, updateNCharacterStream, updateNCharacterStream, updateNCharacterStream, updateNCharacterStream, updateNClob, updateNClob, updateNClob, updateNClob, updateNClob, updateNClob, updateNString, updateNString, updateNull, updateNull, updateObject, updateObject, updateObject, updateObject, updateRef, updateRef, updateRow, updateRowId, updateRowId, updateShort, updateShort, updateSQLXML, updateSQLXML, updateString, updateString, updateTime, updateTime, updateTimestamp, updateTimestamp |
Constructor Detail |
---|
protected WCResultSet(WCConnection connection) throws java.sql.SQLException
java.sql.SQLException
protected WCResultSet(WCConnection connection, WCStatement statement) throws java.sql.SQLException
java.sql.SQLException
protected WCResultSet(WCConnection connection, WCStatement statement, java.lang.String sql) throws java.sql.SQLException
java.sql.SQLException
protected WCResultSet(WCConnection connection, WCStatement statement, java.lang.String sql, com.ozdevworx.dtype.DataHandler results) throws java.sql.SQLException
java.sql.SQLException
Method Detail |
---|
public void addRow(com.ozdevworx.dtype.DataHandler row)
ResultSet
row
- The new row to add to this ResultSet.public boolean next() throws java.sql.SQLException
next
in interface java.sql.ResultSet
java.sql.SQLException
public boolean previous() throws java.sql.SQLException
previous
in interface java.sql.ResultSet
java.sql.SQLException
public boolean first() throws java.sql.SQLException
first
in interface java.sql.ResultSet
java.sql.SQLException
public boolean last() throws java.sql.SQLException
last
in interface java.sql.ResultSet
java.sql.SQLException
public boolean isClosed() throws java.sql.SQLException
isClosed
in interface java.sql.ResultSet
java.sql.SQLException
public boolean isFirst() throws java.sql.SQLException
isFirst
in interface java.sql.ResultSet
java.sql.SQLException
public boolean isLast() throws java.sql.SQLException
isLast
in interface java.sql.ResultSet
java.sql.SQLException
public void close() throws java.sql.SQLException
close
in interface java.sql.ResultSet
java.sql.SQLException
public int getFetchDirection() throws java.sql.SQLException
getFetchDirection
in interface java.sql.ResultSet
java.sql.SQLException
public int getFetchSize() throws java.sql.SQLException
getFetchSize
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getFetchSize()
public void setFetchDirection(int direction) throws java.sql.SQLException
setFetchDirection
in interface java.sql.ResultSet
java.sql.SQLException
public int getRow() throws java.sql.SQLException
getRow
in interface java.sql.ResultSet
java.sql.SQLException
public WCStatement getStatement() throws java.sql.SQLException
getStatement
in interface java.sql.ResultSet
java.sql.SQLException
public int getInt(int columnIndex) throws java.sql.SQLException
getInt
in interface java.sql.ResultSet
java.sql.SQLException
public int getInt(java.lang.String columnLabel) throws java.sql.SQLException
getInt
in interface java.sql.ResultSet
java.sql.SQLException
public double getDouble(int columnIndex) throws java.sql.SQLException
getDouble
in interface java.sql.ResultSet
java.sql.SQLException
public double getDouble(java.lang.String columnLabel) throws java.sql.SQLException
getDouble
in interface java.sql.ResultSet
java.sql.SQLException
public float getFloat(int columnIndex) throws java.sql.SQLException
getFloat
in interface java.sql.ResultSet
java.sql.SQLException
public float getFloat(java.lang.String columnLabel) throws java.sql.SQLException
getFloat
in interface java.sql.ResultSet
java.sql.SQLException
public java.lang.Object getObject(int columnIndex) throws java.sql.SQLException
getObject
in interface java.sql.ResultSet
java.sql.SQLException
public java.lang.Object getObject(java.lang.String columnLabel) throws java.sql.SQLException
getObject
in interface java.sql.ResultSet
java.sql.SQLException
public java.lang.String getString(int columnIndex) throws java.sql.SQLException
getString
in interface java.sql.ResultSet
java.sql.SQLException
public java.lang.String getString(java.lang.String columnLabel) throws java.sql.SQLException
getString
in interface java.sql.ResultSet
java.sql.SQLException
public long getLong(int columnIndex) throws java.sql.SQLException
getLong
in interface java.sql.ResultSet
java.sql.SQLException
public long getLong(java.lang.String columnLabel) throws java.sql.SQLException
getLong
in interface java.sql.ResultSet
java.sql.SQLException
public short getShort(int columnIndex) throws java.sql.SQLException
getShort
in interface java.sql.ResultSet
java.sql.SQLException
public short getShort(java.lang.String columnLabel) throws java.sql.SQLException
getShort
in interface java.sql.ResultSet
java.sql.SQLException
public boolean absolute(int row) throws java.sql.SQLException
absolute
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.absolute(int)
public void afterLast() throws java.sql.SQLException
afterLast
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.afterLast()
public void beforeFirst() throws java.sql.SQLException
beforeFirst
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.beforeFirst()
public void cancelRowUpdates() throws java.sql.SQLException
cancelRowUpdates
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.cancelRowUpdates()
public void clearWarnings() throws java.sql.SQLException
clearWarnings
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.clearWarnings()
public void deleteRow() throws java.sql.SQLException
deleteRow
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.deleteRow()
public int findColumn(java.lang.String columnLabel) throws java.sql.SQLException
findColumn
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.findColumn(java.lang.String)
public java.sql.Array getArray(int columnIndex) throws java.sql.SQLException
getArray
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getArray(int)
public java.sql.Array getArray(java.lang.String columnLabel) throws java.sql.SQLException
getArray
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getArray(java.lang.String)
public java.io.InputStream getAsciiStream(int columnIndex) throws java.sql.SQLException
getAsciiStream
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getAsciiStream(int)
public java.io.InputStream getAsciiStream(java.lang.String columnLabel) throws java.sql.SQLException
getAsciiStream
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getAsciiStream(java.lang.String)
public java.math.BigDecimal getBigDecimal(int columnIndex) throws java.sql.SQLException
getBigDecimal
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getBigDecimal(int)
public java.math.BigDecimal getBigDecimal(java.lang.String columnLabel) throws java.sql.SQLException
getBigDecimal
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getBigDecimal(java.lang.String)
@Deprecated public java.math.BigDecimal getBigDecimal(int columnIndex, int scale) throws java.sql.SQLException
getBigDecimal
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getBigDecimal(int, int)
@Deprecated public java.math.BigDecimal getBigDecimal(java.lang.String columnLabel, int scale) throws java.sql.SQLException
getBigDecimal
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getBigDecimal(java.lang.String, int)
public java.io.InputStream getBinaryStream(int columnIndex) throws java.sql.SQLException
getBinaryStream
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getBinaryStream(int)
public java.io.InputStream getBinaryStream(java.lang.String columnLabel) throws java.sql.SQLException
getBinaryStream
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getBinaryStream(java.lang.String)
public java.sql.Blob getBlob(int columnIndex) throws java.sql.SQLException
getBlob
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getBlob(int)
public java.sql.Blob getBlob(java.lang.String columnLabel) throws java.sql.SQLException
getBlob
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getBlob(java.lang.String)
public boolean getBoolean(int columnIndex) throws java.sql.SQLException
TRUE
or FALSE
YES
or NO
ON
or OFF
1
or 0
getBoolean
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getBoolean(int)
public boolean getBoolean(java.lang.String columnLabel) throws java.sql.SQLException
TRUE
or FALSE
YES
or NO
ON
or OFF
1
or 0
getBoolean
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getBoolean(java.lang.String)
public byte getByte(int columnIndex) throws java.sql.SQLException
getByte
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getByte(int)
public byte getByte(java.lang.String columnLabel) throws java.sql.SQLException
getByte
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getByte(java.lang.String)
public byte[] getBytes(int columnIndex) throws java.sql.SQLException
getBytes
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getBytes(int)
public byte[] getBytes(java.lang.String columnLabel) throws java.sql.SQLException
getBytes
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getBytes(java.lang.String)
public java.io.Reader getCharacterStream(int columnIndex) throws java.sql.SQLException
getCharacterStream
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getCharacterStream(int)
public java.io.Reader getCharacterStream(java.lang.String columnLabel) throws java.sql.SQLException
getCharacterStream
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getCharacterStream(java.lang.String)
public java.sql.Clob getClob(int columnIndex) throws java.sql.SQLException
getClob
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getClob(int)
public java.sql.Clob getClob(java.lang.String columnLabel) throws java.sql.SQLException
getClob
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getClob(java.lang.String)
public int getConcurrency() throws java.sql.SQLException
getConcurrency
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getConcurrency()
public java.lang.String getCursorName() throws java.sql.SQLException
getCursorName
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getCursorName()
public java.sql.Date getDate(int columnIndex) throws java.sql.SQLException
getDate(int columnIndex, Calendar cal)
and specify the desired timezone in the Calendar Object.
null
(as expected).null
(to avoid altering the actual value).
getDate
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getDate(int)
public java.sql.Date getDate(java.lang.String columnLabel) throws java.sql.SQLException
getDate(String columnLabel, Calendar cal)
and specify the desired timezone in the Calendar Object.
null
(as expected).null
(to avoid altering the actual value).
getDate
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getDate(java.lang.String)
public java.sql.Date getDate(int columnIndex, java.util.Calendar cal) throws java.sql.SQLException
getDate(int columnIndex)
to have Dates automagically converted from the server
TimeZone to the Hosts TimeZone.
null
(as expected).null
(to avoid altering the actual value).
getDate
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getDate(int, java.util.Calendar)
public java.sql.Date getDate(java.lang.String columnLabel, java.util.Calendar cal) throws java.sql.SQLException
getDate(String columnLabel)
to have Dates automagically converted from the server
TimeZone to the Hosts TimeZone.
null
(as expected).null
(to avoid altering the actual value).
getDate
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getDate(java.lang.String, java.util.Calendar)
public int getHoldability() throws java.sql.SQLException
getHoldability
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getHoldability()
public java.sql.ResultSetMetaData getMetaData() throws java.sql.SQLException
getMetaData
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getMetaData()
public java.io.Reader getNCharacterStream(int columnIndex) throws java.sql.SQLException
getNCharacterStream
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getNCharacterStream(int)
public java.io.Reader getNCharacterStream(java.lang.String columnLabel) throws java.sql.SQLException
getNCharacterStream
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getNCharacterStream(java.lang.String)
public java.sql.NClob getNClob(int columnIndex) throws java.sql.SQLException
getNClob
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getNClob(int)
public java.sql.NClob getNClob(java.lang.String columnLabel) throws java.sql.SQLException
getNClob
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getNClob(java.lang.String)
public java.lang.String getNString(int columnIndex) throws java.sql.SQLException
getNString
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getNString(int)
public java.lang.String getNString(java.lang.String columnLabel) throws java.sql.SQLException
getNString
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getNString(java.lang.String)
public java.lang.Object getObject(int arg0, java.util.Map<java.lang.String,java.lang.Class<?>> arg1) throws java.sql.SQLException
getObject
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getObject(int, java.util.Map)
public java.lang.Object getObject(java.lang.String arg0, java.util.Map<java.lang.String,java.lang.Class<?>> arg1) throws java.sql.SQLException
getObject
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getObject(java.lang.String, java.util.Map)
public java.sql.Ref getRef(int columnIndex) throws java.sql.SQLException
getRef
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getRef(int)
public java.sql.Ref getRef(java.lang.String columnLabel) throws java.sql.SQLException
getRef
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getRef(java.lang.String)
public java.sql.RowId getRowId(int columnIndex) throws java.sql.SQLException
getRowId
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getRowId(int)
public java.sql.RowId getRowId(java.lang.String columnLabel) throws java.sql.SQLException
getRowId
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getRowId(java.lang.String)
public java.sql.SQLXML getSQLXML(int columnIndex) throws java.sql.SQLException
getSQLXML
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getSQLXML(int)
public java.sql.SQLXML getSQLXML(java.lang.String columnLabel) throws java.sql.SQLException
getSQLXML
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getSQLXML(java.lang.String)
public java.sql.Time getTime(int columnIndex) throws java.sql.SQLException
getTime(int columnIndex, Calendar cal)
and specify the desired timezone in the Calendar Object.
null
(as expected).null
(to avoid altering the actual value).
getTime
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getTime(int)
public java.sql.Time getTime(java.lang.String columnLabel) throws java.sql.SQLException
getTime(String columnLabel, Calendar cal)
and specify the desired timezone in the Calendar Object.
null
(as expected).null
(to avoid altering the actual value).
getTime
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getTime(java.lang.String)
public java.sql.Time getTime(int columnIndex, java.util.Calendar cal) throws java.sql.SQLException
getTime(int columnIndex)
to have Times automagically converted from the server
TimeZone to the Hosts TimeZone.
null
(as expected).null
(to avoid altering the actual value).
getTime
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getTime(int, java.util.Calendar)
public java.sql.Time getTime(java.lang.String columnLabel, java.util.Calendar cal) throws java.sql.SQLException
getTime(columnLabel)
to have Times automagically converted from the server
TimeZone to the Hosts TimeZone.
null
(as expected).null
(to avoid altering the actual value).
getTime
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getTime(java.lang.String, java.util.Calendar)
public java.sql.Timestamp getTimestamp(int columnIndex) throws java.sql.SQLException
getTimestamp(int columnIndex, Calendar cal)
and specify the desired timezone in the Calendar Object.
null
(as expected).null
(to avoid altering the actual value).
getTimestamp
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getTimestamp(int)
public java.sql.Timestamp getTimestamp(java.lang.String columnLabel) throws java.sql.SQLException
getTimestamp(String columnLabel, Calendar cal)
and specify the desired timezone in the Calendar Object.
null
(as expected).null
(to avoid altering the actual value).
getTimestamp
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getTimestamp(java.lang.String)
public java.sql.Timestamp getTimestamp(int columnIndex, java.util.Calendar cal) throws java.sql.SQLException
getTimestamp(int columnIndex)
to have Timestamps automagically converted from the server
TimeZone to the Hosts TimeZone.
null
(as expected).null
(to avoid altering the actual value).
getTimestamp
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getTimestamp(int, java.util.Calendar)
public java.sql.Timestamp getTimestamp(java.lang.String columnLabel, java.util.Calendar cal) throws java.sql.SQLException
getTimestamp(String columnLabel)
to have Timestamps automagically converted from the server
TimeZone to the Hosts TimeZone.
null
(as expected).null
(to avoid altering the actual value).
getTimestamp
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getTimestamp(java.lang.String, java.util.Calendar)
public int getType() throws java.sql.SQLException
getType
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getType()
public java.net.URL getURL(int columnIndex) throws java.sql.SQLException
getURL
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getURL(int)
public java.net.URL getURL(java.lang.String columnLabel) throws java.sql.SQLException
getURL
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getURL(java.lang.String)
@Deprecated public java.io.InputStream getUnicodeStream(int columnIndex) throws java.sql.SQLException
getUnicodeStream
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getUnicodeStream(int)
@Deprecated public java.io.InputStream getUnicodeStream(java.lang.String columnLabel) throws java.sql.SQLException
getUnicodeStream
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getUnicodeStream(java.lang.String)
public java.sql.SQLWarning getWarnings() throws java.sql.SQLException
getWarnings
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.getWarnings()
public void insertRow() throws java.sql.SQLException
insertRow
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.insertRow()
public boolean isAfterLast() throws java.sql.SQLException
isAfterLast
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.isAfterLast()
public boolean isBeforeFirst() throws java.sql.SQLException
isBeforeFirst
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.isBeforeFirst()
public void moveToCurrentRow() throws java.sql.SQLException
moveToCurrentRow
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.moveToCurrentRow()
public void moveToInsertRow() throws java.sql.SQLException
moveToInsertRow
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.moveToInsertRow()
public void refreshRow() throws java.sql.SQLException
refreshRow
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.refreshRow()
public boolean relative(int rows) throws java.sql.SQLException
relative
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.relative(int)
public boolean rowDeleted() throws java.sql.SQLException
rowDeleted
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.rowDeleted()
public boolean rowInserted() throws java.sql.SQLException
rowInserted
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.rowInserted()
public boolean rowUpdated() throws java.sql.SQLException
rowUpdated
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.rowUpdated()
public void setFetchSize(int rows) throws java.sql.SQLException
setFetchSize
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.setFetchSize(int)
public boolean wasNull() throws java.sql.SQLException
wasNull
in interface java.sql.ResultSet
java.sql.SQLException
ResultSet.wasNull()
public boolean isWrapperFor(java.lang.Class<?> iface) throws java.sql.SQLException
isWrapperFor
in interface java.sql.Wrapper
java.sql.SQLException
Wrapper.isWrapperFor(java.lang.Class)
public <T> T unwrap(java.lang.Class<T> iface) throws java.sql.SQLException
unwrap
in interface java.sql.Wrapper
java.sql.SQLException
Wrapper.unwrap(java.lang.Class)
protected java.sql.Date getDateFromString(java.lang.String dateAsString, java.util.Calendar targetCal) throws java.sql.SQLException
dateAsString
- targetCal
-
java.sql.SQLException
protected java.sql.Time getTimeFromString(java.lang.String timeAsString, java.util.Calendar targetCal) throws java.sql.SQLException
java.sql.SQLException
protected java.sql.Timestamp getTimestampFromString(java.lang.String timestampValue, java.util.Calendar targetCal) throws java.sql.SQLException
java.sql.SQLException
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |