|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Objectcom.ricebridge.xmlman.in.XmlResultSet
Implementation of a ResultSet to present XML data.
This ResultSet provides much the same interface as a database ResultSet.
This implementation assumes that your data is fairly well behaved and attempts direct data type
conversions for methods like getInt(java.lang.String). Bad data will cause an exception to be thrown.
Refer to ResultSet for method documentation if none is given here.
NOTE: in order to reuse the
The Source Code of this Java class is available under a BSD-style license.
| Field Summary | |
protected ArrayList |
iData
Data as a List of String[] arrays. |
protected boolean |
iDataHasHeaders
The first line of the CSV file may contain headers. |
protected DateFormat |
iDateFormat
Default data format for date parsing. |
protected boolean |
iHeadersStored
Flag to indicate that headers have been loaded. |
protected String[] |
iRecord
Current data record. |
protected long |
iRecordIndex
index of current record. |
protected XmlResultSetMetaData |
iXmlRSMD
ResultSetMetaData provider |
| 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 | |
XmlResultSet()
Support Class.newInstance() object instantiation. |
|
XmlResultSet(List pData)
Create a new ResultSet with specified a List of String[] arrays. |
|
| Method Summary | |
boolean |
absolute(int pRow)
|
void |
addRecord(String[] pRecord)
Set data for ResultSet. |
void |
afterLast()
|
void |
beforeFirst()
|
void |
cancelRowUpdates()
|
void |
clear()
Remove all data rows. |
void |
clearWarnings()
|
void |
close()
|
void |
deleteRow()
|
int |
findColumn(String pColumnName)
|
boolean |
first()
|
Array |
getArray(int pIndex)
|
Array |
getArray(String pColName)
|
InputStream |
getAsciiStream(int pColumnIndex)
|
InputStream |
getAsciiStream(String pColumnName)
|
BigDecimal |
getBigDecimal(int pColumnIndex)
|
BigDecimal |
getBigDecimal(int pColumnIndex,
int pScale)
|
BigDecimal |
getBigDecimal(String pColumnName)
|
BigDecimal |
getBigDecimal(String pColumnName,
int pScale)
|
InputStream |
getBinaryStream(int pColumnIndex)
|
InputStream |
getBinaryStream(String pColumnName)
|
Blob |
getBlob(int pIndex)
|
Blob |
getBlob(String pColName)
|
boolean |
getBoolean(int pColumnIndex)
|
boolean |
getBoolean(String pColumnName)
|
byte |
getByte(int pColumnIndex)
|
byte |
getByte(String pColumnName)
|
byte[] |
getBytes(int pColumnIndex)
|
byte[] |
getBytes(String pColumnName)
|
Reader |
getCharacterStream(int pColumnIndex)
|
Reader |
getCharacterStream(String pColumnName)
|
Clob |
getClob(int pIndex)
|
Clob |
getClob(String pColName)
|
int |
getConcurrency()
|
String |
getCursorName()
|
Date |
getDate(int pColumnIndex)
|
Date |
getDate(int pColumnIndex,
Calendar pCalendar)
ignores Calendar |
Date |
getDate(String pColumnName)
|
Date |
getDate(String pColumnName,
Calendar pCalendar)
|
double |
getDouble(int pColumnIndex)
|
double |
getDouble(String pColumnName)
|
int |
getFetchDirection()
|
int |
getFetchSize()
|
float |
getFloat(int pColumnIndex)
|
float |
getFloat(String pColumnName)
|
int |
getInt(int pColumnIndex)
|
int |
getInt(String pColumnName)
|
long |
getLong(int pColumnIndex)
|
long |
getLong(String pColumnName)
|
ResultSetMetaData |
getMetaData()
|
Object |
getObject(int pColumnIndex)
|
Object |
getObject(int pIndex,
Map pMap)
|
Object |
getObject(String pColumnName)
|
Object |
getObject(String pColName,
Map pMap)
|
Ref |
getRef(int pIndex)
|
Ref |
getRef(String pColName)
|
int |
getRow()
|
int |
getRowCount()
Get the number of rows. |
short |
getShort(int pColumnIndex)
|
short |
getShort(String pColumnName)
|
Statement |
getStatement()
|
String |
getString(int pColumnIndex)
|
String |
getString(String pColumnName)
|
Time |
getTime(int pColumnIndex)
|
Time |
getTime(int pColumnIndex,
Calendar pCalendar)
Note: ignores Calendar. |
Time |
getTime(String pColumnName)
|
Time |
getTime(String pColumnName,
Calendar pCalendar)
|
Timestamp |
getTimestamp(int pColumnIndex)
|
Timestamp |
getTimestamp(int pColumnIndex,
Calendar pCalendar)
Note: ignores Calendar. |
Timestamp |
getTimestamp(String pColumnName)
|
Timestamp |
getTimestamp(String pColumnName,
Calendar pCalendar)
|
int |
getType()
|
InputStream |
getUnicodeStream(int pColumnIndex)
|
InputStream |
getUnicodeStream(String pColumnName)
|
URL |
getURL(int pColumnIndex)
|
URL |
getURL(String pColumnName)
|
SQLWarning |
getWarnings()
|
void |
init()
Initialise the internal data containers before loading new XML record data. |
void |
insertRow()
|
boolean |
isAfterLast()
|
boolean |
isBeforeFirst()
|
boolean |
isFirst()
|
boolean |
isLast()
|
boolean |
last()
|
void |
moveToCurrentRow()
|
void |
moveToInsertRow()
|
protected boolean |
moveToLine()
Move to correct data line. |
boolean |
next()
|
boolean |
previous()
|
void |
refreshRow()
|
boolean |
relative(int pRows)
|
boolean |
rowDeleted()
|
boolean |
rowInserted()
|
boolean |
rowUpdated()
|
void |
setDataHasHeaders(boolean pDataHasHeaders)
The first record contains the column names. |
void |
setDateFormat(DateFormat pDateFormat)
Specify custom date format. |
void |
setFetchDirection(int pDirection)
|
void |
setFetchSize(int pRows)
|
void |
setHeaders(String[] pHeaders)
Set the column header names. |
String |
toString()
String description of object instance. |
void |
updateArray(int pColumnIndex,
Array pArray)
|
void |
updateArray(String pColumnName,
Array pArray)
|
void |
updateAsciiStream(int pColumnIndex,
InputStream pInputStream,
int pLength)
|
void |
updateAsciiStream(String pColumnName,
InputStream pInputStream,
int pLength)
|
void |
updateBigDecimal(int pColumnIndex,
BigDecimal pBigDecimal)
|
void |
updateBigDecimal(String pColumnName,
BigDecimal pBigDecimal)
|
void |
updateBinaryStream(int pColumnIndex,
InputStream pInputStream,
int pLength)
|
void |
updateBinaryStream(String pColumnName,
InputStream pInputStream,
int pLength)
|
void |
updateBlob(int pColumnIndex,
Blob pBlob)
|
void |
updateBlob(String pColumnName,
Blob pBlob)
|
void |
updateBoolean(int pColumnIndex,
boolean pValue)
|
void |
updateBoolean(String pColumnName,
boolean pValue)
|
void |
updateByte(int pColumnIndex,
byte pValue)
|
void |
updateByte(String pColumnName,
byte pValue)
|
void |
updateBytes(int pColumnIndex,
byte[] pBytes)
|
void |
updateBytes(String pColumnName,
byte[] pBytes)
|
void |
updateCharacterStream(int pColumnIndex,
Reader pReader,
int pLength)
|
void |
updateCharacterStream(String pColumnName,
Reader pReader,
int pLength)
|
void |
updateClob(int pColumnIndex,
Clob pValue)
|
void |
updateClob(String pColumnName,
Clob pValue)
|
void |
updateDate(int pColumnIndex,
Date pValue)
|
void |
updateDate(String pColumnName,
Date pValue)
|
void |
updateDouble(int pColumnIndex,
double pValue)
|
void |
updateDouble(String pColumnName,
double pValue)
|
void |
updateFloat(int pColumnIndex,
float pValue)
|
void |
updateFloat(String pColumnName,
float pValue)
|
void |
updateInt(int pColumnIndex,
int pValue)
|
void |
updateInt(String pColumnName,
int pValue)
|
void |
updateLong(int pColumnIndex,
long pValue)
|
void |
updateLong(String pColumnName,
long pValue)
|
void |
updateNull(int pColumnIndex)
|
void |
updateNull(String pColumnName)
|
void |
updateObject(int pColumnIndex,
Object pValue)
|
void |
updateObject(int pColumnIndex,
Object pValue,
int pScale)
|
void |
updateObject(String pColumnName,
Object pValue)
|
void |
updateObject(String pColumnName,
Object pValue,
int pScale)
|
void |
updateRef(int pColumnIndex,
Ref pValue)
|
void |
updateRef(String pColumnName,
Ref pValue)
|
void |
updateRow()
|
void |
updateShort(int pColumnIndex,
short pValue)
|
void |
updateShort(String pColumnName,
short pValue)
|
void |
updateString(int pColumnIndex,
String pValue)
|
void |
updateString(String pColumnName,
String pValue)
|
void |
updateTime(int pColumnIndex,
Time pValue)
|
void |
updateTime(String pColumnName,
Time pValue)
|
void |
updateTimestamp(int pColumnIndex,
Timestamp pValue)
|
void |
updateTimestamp(String pColumnName,
Timestamp pValue)
|
boolean |
wasNull()
|
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Field Detail |
protected ArrayList iData
List of String[] arrays.
protected String[] iRecord
protected long iRecordIndex
protected DateFormat iDateFormat
protected XmlResultSetMetaData iXmlRSMD
protected boolean iDataHasHeaders
protected boolean iHeadersStored
| Constructor Detail |
public XmlResultSet()
Class.newInstance() object instantiation.
public XmlResultSet(List pData)
ResultSet with specified a List of String[] arrays.
| Method Detail |
public Array getArray(String pColName)
throws SQLException
getArray in interface ResultSetSQLException
public Array getArray(int pIndex)
throws SQLException
getArray in interface ResultSetSQLException
public Blob getBlob(String pColName)
throws SQLException
getBlob in interface ResultSetSQLException
public Blob getBlob(int pIndex)
throws SQLException
getBlob in interface ResultSetSQLException
public Clob getClob(String pColName)
throws SQLException
getClob in interface ResultSetSQLException
public Clob getClob(int pIndex)
throws SQLException
getClob in interface ResultSetSQLException
public Object getObject(String pColName,
Map pMap)
throws SQLException
getObject in interface ResultSetSQLException
public Object getObject(int pIndex,
Map pMap)
throws SQLException
getObject in interface ResultSetSQLException
public Ref getRef(String pColName)
throws SQLException
getRef in interface ResultSetSQLException
public Ref getRef(int pIndex)
throws SQLException
getRef in interface ResultSetSQLException
public Statement getStatement()
throws SQLException
getStatement in interface ResultSetSQLException
public SQLWarning getWarnings()
throws SQLException
getWarnings in interface ResultSetSQLException
public String getCursorName()
throws SQLException
getCursorName in interface ResultSetSQLException
public boolean rowDeleted()
throws SQLException
rowDeleted in interface ResultSetSQLException
public boolean rowInserted()
throws SQLException
rowInserted in interface ResultSetSQLException
public boolean rowUpdated()
throws SQLException
rowUpdated in interface ResultSetSQLException
public boolean wasNull()
throws SQLException
wasNull in interface ResultSetSQLException
public int getFetchDirection()
throws SQLException
getFetchDirection in interface ResultSetSQLException
public void setFetchDirection(int pDirection)
throws SQLException
setFetchDirection in interface ResultSetSQLException
public int getFetchSize()
throws SQLException
getFetchSize in interface ResultSetSQLException
public void setFetchSize(int pRows)
throws SQLException
setFetchSize in interface ResultSetSQLException
public int getConcurrency()
throws SQLException
getConcurrency in interface ResultSetSQLException
public void cancelRowUpdates()
throws SQLException
cancelRowUpdates in interface ResultSetSQLException
public void clearWarnings()
throws SQLException
clearWarnings in interface ResultSetSQLException
public void close()
throws SQLException
close in interface ResultSetSQLException
public void deleteRow()
throws SQLException
deleteRow in interface ResultSetSQLException
public void insertRow()
throws SQLException
insertRow in interface ResultSetSQLException
public void moveToCurrentRow()
throws SQLException
moveToCurrentRow in interface ResultSetSQLException
public void moveToInsertRow()
throws SQLException
moveToInsertRow in interface ResultSetSQLException
public void refreshRow()
throws SQLException
refreshRow in interface ResultSetSQLException
public void updateArray(String pColumnName,
Array pArray)
throws SQLException
updateArray in interface ResultSetSQLException
public void updateArray(int pColumnIndex,
Array pArray)
throws SQLException
updateArray in interface ResultSetSQLException
public void updateAsciiStream(String pColumnName,
InputStream pInputStream,
int pLength)
throws SQLException
updateAsciiStream in interface ResultSetSQLException
public void updateAsciiStream(int pColumnIndex,
InputStream pInputStream,
int pLength)
throws SQLException
updateAsciiStream in interface ResultSetSQLException
public void updateBigDecimal(String pColumnName,
BigDecimal pBigDecimal)
throws SQLException
updateBigDecimal in interface ResultSetSQLException
public void updateBigDecimal(int pColumnIndex,
BigDecimal pBigDecimal)
throws SQLException
updateBigDecimal in interface ResultSetSQLException
public void updateBinaryStream(String pColumnName,
InputStream pInputStream,
int pLength)
throws SQLException
updateBinaryStream in interface ResultSetSQLException
public void updateBinaryStream(int pColumnIndex,
InputStream pInputStream,
int pLength)
throws SQLException
updateBinaryStream in interface ResultSetSQLException
public void updateBlob(String pColumnName,
Blob pBlob)
throws SQLException
updateBlob in interface ResultSetSQLException
public void updateBlob(int pColumnIndex,
Blob pBlob)
throws SQLException
updateBlob in interface ResultSetSQLException
public void updateBoolean(String pColumnName,
boolean pValue)
throws SQLException
updateBoolean in interface ResultSetSQLException
public void updateBoolean(int pColumnIndex,
boolean pValue)
throws SQLException
updateBoolean in interface ResultSetSQLException
public void updateByte(String pColumnName,
byte pValue)
throws SQLException
updateByte in interface ResultSetSQLException
public void updateByte(int pColumnIndex,
byte pValue)
throws SQLException
updateByte in interface ResultSetSQLException
public void updateBytes(String pColumnName,
byte[] pBytes)
throws SQLException
updateBytes in interface ResultSetSQLException
public void updateBytes(int pColumnIndex,
byte[] pBytes)
throws SQLException
updateBytes in interface ResultSetSQLException
public void updateCharacterStream(String pColumnName,
Reader pReader,
int pLength)
throws SQLException
updateCharacterStream in interface ResultSetSQLException
public void updateCharacterStream(int pColumnIndex,
Reader pReader,
int pLength)
throws SQLException
updateCharacterStream in interface ResultSetSQLException
public void updateClob(String pColumnName,
Clob pValue)
throws SQLException
updateClob in interface ResultSetSQLException
public void updateClob(int pColumnIndex,
Clob pValue)
throws SQLException
updateClob in interface ResultSetSQLException
public void updateDate(String pColumnName,
Date pValue)
throws SQLException
updateDate in interface ResultSetSQLException
public void updateDate(int pColumnIndex,
Date pValue)
throws SQLException
updateDate in interface ResultSetSQLException
public void updateDouble(String pColumnName,
double pValue)
throws SQLException
updateDouble in interface ResultSetSQLException
public void updateDouble(int pColumnIndex,
double pValue)
throws SQLException
updateDouble in interface ResultSetSQLException
public void updateFloat(String pColumnName,
float pValue)
throws SQLException
updateFloat in interface ResultSetSQLException
public void updateFloat(int pColumnIndex,
float pValue)
throws SQLException
updateFloat in interface ResultSetSQLException
public void updateInt(String pColumnName,
int pValue)
throws SQLException
updateInt in interface ResultSetSQLException
public void updateInt(int pColumnIndex,
int pValue)
throws SQLException
updateInt in interface ResultSetSQLException
public void updateLong(String pColumnName,
long pValue)
throws SQLException
updateLong in interface ResultSetSQLException
public void updateLong(int pColumnIndex,
long pValue)
throws SQLException
updateLong in interface ResultSetSQLException
public void updateNull(String pColumnName)
throws SQLException
updateNull in interface ResultSetSQLException
public void updateNull(int pColumnIndex)
throws SQLException
updateNull in interface ResultSetSQLException
public void updateObject(String pColumnName,
Object pValue)
throws SQLException
updateObject in interface ResultSetSQLException
public void updateObject(String pColumnName,
Object pValue,
int pScale)
throws SQLException
updateObject in interface ResultSetSQLException
public void updateObject(int pColumnIndex,
Object pValue)
throws SQLException
updateObject in interface ResultSetSQLException
public void updateObject(int pColumnIndex,
Object pValue,
int pScale)
throws SQLException
updateObject in interface ResultSetSQLException
public void updateRef(String pColumnName,
Ref pValue)
throws SQLException
updateRef in interface ResultSetSQLException
public void updateRef(int pColumnIndex,
Ref pValue)
throws SQLException
updateRef in interface ResultSetSQLException
public void updateRow()
throws SQLException
updateRow in interface ResultSetSQLException
public void updateShort(String pColumnName,
short pValue)
throws SQLException
updateShort in interface ResultSetSQLException
public void updateShort(int pColumnIndex,
short pValue)
throws SQLException
updateShort in interface ResultSetSQLException
public void updateString(String pColumnName,
String pValue)
throws SQLException
updateString in interface ResultSetSQLException
public void updateString(int pColumnIndex,
String pValue)
throws SQLException
updateString in interface ResultSetSQLException
public void updateTime(String pColumnName,
Time pValue)
throws SQLException
updateTime in interface ResultSetSQLException
public void updateTime(int pColumnIndex,
Time pValue)
throws SQLException
updateTime in interface ResultSetSQLException
public void updateTimestamp(String pColumnName,
Timestamp pValue)
throws SQLException
updateTimestamp in interface ResultSetSQLException
public void updateTimestamp(int pColumnIndex,
Timestamp pValue)
throws SQLException
updateTimestamp in interface ResultSetSQLExceptionpublic void init()
public void setDataHasHeaders(boolean pDataHasHeaders)
pDataHasHeaders - flag headers in datapublic void setHeaders(String[] pHeaders)
pHeaders - field names are used as column header namespublic void addRecord(String[] pRecord)
ResultSet.
pRecord - data recordpublic int getRowCount()
public void setDateFormat(DateFormat pDateFormat)
pDateFormat - custom data formatpublic void clear()
public String toString()
String description of object instance.
public int getType()
throws SQLException
getType in interface ResultSetSQLException
public ResultSetMetaData getMetaData()
throws SQLException
getMetaData in interface ResultSetSQLException
public int findColumn(String pColumnName)
throws SQLException
findColumn in interface ResultSetSQLException
public boolean absolute(int pRow)
throws SQLException
absolute in interface ResultSetSQLException
public boolean first()
throws SQLException
first in interface ResultSetSQLException
public boolean last()
throws SQLException
last in interface ResultSetSQLException
public boolean isAfterLast()
throws SQLException
isAfterLast in interface ResultSetSQLException
public boolean isBeforeFirst()
throws SQLException
isBeforeFirst in interface ResultSetSQLException
public boolean isFirst()
throws SQLException
isFirst in interface ResultSetSQLException
public boolean isLast()
throws SQLException
isLast in interface ResultSetSQLException
public boolean next()
throws SQLException
next in interface ResultSetSQLException
public boolean previous()
throws SQLException
previous in interface ResultSetSQLException
public boolean relative(int pRows)
throws SQLException
relative in interface ResultSetSQLException
public int getRow()
throws SQLException
getRow in interface ResultSetSQLException
public void afterLast()
throws SQLException
afterLast in interface ResultSetSQLException
public void beforeFirst()
throws SQLException
beforeFirst in interface ResultSetSQLException
public BigDecimal getBigDecimal(String pColumnName)
throws SQLException
getBigDecimal in interface ResultSetSQLException
public BigDecimal getBigDecimal(String pColumnName,
int pScale)
throws SQLException
getBigDecimal in interface ResultSetSQLException
public BigDecimal getBigDecimal(int pColumnIndex)
throws SQLException
getBigDecimal in interface ResultSetSQLException
public BigDecimal getBigDecimal(int pColumnIndex,
int pScale)
throws SQLException
getBigDecimal in interface ResultSetSQLException
public Object getObject(String pColumnName)
throws SQLException
getObject in interface ResultSetSQLException
public Object getObject(int pColumnIndex)
throws SQLException
getObject in interface ResultSetSQLException
public String getString(String pColumnName)
throws SQLException
getString in interface ResultSetSQLException
public String getString(int pColumnIndex)
throws SQLException
getString in interface ResultSetSQLException
public boolean getBoolean(String pColumnName)
throws SQLException
getBoolean in interface ResultSetSQLException
public boolean getBoolean(int pColumnIndex)
throws SQLException
getBoolean in interface ResultSetSQLException
public byte getByte(String pColumnName)
throws SQLException
getByte in interface ResultSetSQLException
public byte getByte(int pColumnIndex)
throws SQLException
getByte in interface ResultSetSQLException
public byte[] getBytes(String pColumnName)
throws SQLException
getBytes in interface ResultSetSQLException
public byte[] getBytes(int pColumnIndex)
throws SQLException
getBytes in interface ResultSetSQLException
public double getDouble(String pColumnName)
throws SQLException
getDouble in interface ResultSetSQLException
public double getDouble(int pColumnIndex)
throws SQLException
getDouble in interface ResultSetSQLException
public float getFloat(String pColumnName)
throws SQLException
getFloat in interface ResultSetSQLException
public float getFloat(int pColumnIndex)
throws SQLException
getFloat in interface ResultSetSQLException
public int getInt(String pColumnName)
throws SQLException
getInt in interface ResultSetSQLException
public int getInt(int pColumnIndex)
throws SQLException
getInt in interface ResultSetSQLException
public InputStream getAsciiStream(String pColumnName)
throws SQLException
getAsciiStream in interface ResultSetSQLException
public InputStream getAsciiStream(int pColumnIndex)
throws SQLException
getAsciiStream in interface ResultSetSQLException
public InputStream getBinaryStream(String pColumnName)
throws SQLException
getBinaryStream in interface ResultSetSQLException
public InputStream getBinaryStream(int pColumnIndex)
throws SQLException
getBinaryStream in interface ResultSetSQLException
public InputStream getUnicodeStream(String pColumnName)
throws SQLException
getUnicodeStream in interface ResultSetSQLException
public InputStream getUnicodeStream(int pColumnIndex)
throws SQLException
getUnicodeStream in interface ResultSetSQLException
public Reader getCharacterStream(String pColumnName)
throws SQLException
getCharacterStream in interface ResultSetSQLException
public Reader getCharacterStream(int pColumnIndex)
throws SQLException
getCharacterStream in interface ResultSetSQLException
public URL getURL(String pColumnName)
throws SQLException
getURL in interface ResultSetSQLException
public URL getURL(int pColumnIndex)
throws SQLException
getURL in interface ResultSetSQLException
public Date getDate(String pColumnName)
throws SQLException
getDate in interface ResultSetSQLException
public Date getDate(String pColumnName,
Calendar pCalendar)
throws SQLException
getDate in interface ResultSetSQLException
public Date getDate(int pColumnIndex)
throws SQLException
getDate in interface ResultSetSQLException
public Date getDate(int pColumnIndex,
Calendar pCalendar)
throws SQLException
getDate in interface ResultSetSQLException
public Time getTime(String pColumnName)
throws SQLException
getTime in interface ResultSetSQLException
public Time getTime(String pColumnName,
Calendar pCalendar)
throws SQLException
getTime in interface ResultSetSQLException
public Time getTime(int pColumnIndex)
throws SQLException
getTime in interface ResultSetSQLException
public Time getTime(int pColumnIndex,
Calendar pCalendar)
throws SQLException
getTime in interface ResultSetSQLException
public Timestamp getTimestamp(String pColumnName)
throws SQLException
getTimestamp in interface ResultSetSQLException
public Timestamp getTimestamp(String pColumnName,
Calendar pCalendar)
throws SQLException
getTimestamp in interface ResultSetSQLException
public Timestamp getTimestamp(int pColumnIndex)
throws SQLException
getTimestamp in interface ResultSetSQLException
public Timestamp getTimestamp(int pColumnIndex,
Calendar pCalendar)
throws SQLException
getTimestamp in interface ResultSetSQLException
public long getLong(String pColumnName)
throws SQLException
getLong in interface ResultSetSQLException
public long getLong(int pColumnIndex)
throws SQLException
getLong in interface ResultSetSQLException
public short getShort(String pColumnName)
throws SQLException
getShort in interface ResultSetSQLException
public short getShort(int pColumnIndex)
throws SQLException
getShort in interface ResultSetSQLExceptionprotected boolean moveToLine()
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||