|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.melati.poem.dbms.test.sql.Thrower org.melati.poem.dbms.test.sql.ThrowingResultSetJdbc3 org.melati.poem.dbms.test.sql.ThrowingResultSetJdbc4
public abstract class ThrowingResultSetJdbc4
The JDBC4 methods of a Ref
, decorated to throw an SQLException on command.
Field Summary |
---|
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 | |
---|---|
ThrowingResultSetJdbc4()
|
Method Summary | ||
---|---|---|
int |
getHoldability()
|
|
Reader |
getNCharacterStream(int columnIndex)
|
|
Reader |
getNCharacterStream(String columnLabel)
|
|
NClob |
getNClob(int columnIndex)
|
|
NClob |
getNClob(String columnLabel)
|
|
String |
getNString(int columnIndex)
|
|
String |
getNString(String columnLabel)
|
|
RowId |
getRowId(int columnIndex)
|
|
RowId |
getRowId(String columnLabel)
|
|
SQLXML |
getSQLXML(int columnIndex)
|
|
SQLXML |
getSQLXML(String columnLabel)
|
|
boolean |
isClosed()
|
|
boolean |
isWrapperFor(Class<?> iface)
|
|
|
unwrap(Class<T1> iface)
|
|
void |
updateAsciiStream(int columnIndex,
InputStream x)
|
|
void |
updateAsciiStream(int columnIndex,
InputStream x,
long length)
|
|
void |
updateAsciiStream(String columnLabel,
InputStream x)
|
|
void |
updateAsciiStream(String columnLabel,
InputStream x,
long length)
|
|
void |
updateBinaryStream(int columnIndex,
InputStream x)
|
|
void |
updateBinaryStream(int columnIndex,
InputStream x,
long length)
|
|
void |
updateBinaryStream(String columnLabel,
InputStream x)
|
|
void |
updateBinaryStream(String columnLabel,
InputStream x,
long length)
|
|
void |
updateBlob(int columnIndex,
InputStream inputStream)
|
|
void |
updateBlob(int columnIndex,
InputStream inputStream,
long length)
|
|
void |
updateBlob(String columnLabel,
InputStream inputStream)
|
|
void |
updateBlob(String columnLabel,
InputStream inputStream,
long length)
|
|
void |
updateCharacterStream(int columnIndex,
Reader x)
|
|
void |
updateCharacterStream(int columnIndex,
Reader x,
long length)
|
|
void |
updateCharacterStream(String columnLabel,
Reader reader)
|
|
void |
updateCharacterStream(String columnLabel,
Reader reader,
long length)
|
|
void |
updateClob(int columnIndex,
Reader reader)
|
|
void |
updateClob(int columnIndex,
Reader reader,
long length)
|
|
void |
updateClob(String columnLabel,
Reader reader)
|
|
void |
updateClob(String columnLabel,
Reader reader,
long length)
|
|
void |
updateNCharacterStream(int columnIndex,
Reader x)
|
|
void |
updateNCharacterStream(int columnIndex,
Reader x,
long length)
|
|
void |
updateNCharacterStream(String columnLabel,
Reader reader)
|
|
void |
updateNCharacterStream(String columnLabel,
Reader reader,
long length)
|
|
void |
updateNClob(int columnIndex,
NClob clob)
|
|
void |
updateNClob(int columnIndex,
Reader reader)
|
|
void |
updateNClob(int columnIndex,
Reader reader,
long length)
|
|
void |
updateNClob(String columnLabel,
NClob clob)
|
|
void |
updateNClob(String columnLabel,
Reader reader)
|
|
void |
updateNClob(String columnLabel,
Reader reader,
long length)
|
|
void |
updateNString(int columnIndex,
String string)
|
|
void |
updateNString(String columnLabel,
String string)
|
|
void |
updateRowId(int columnIndex,
RowId x)
|
|
void |
updateRowId(String columnLabel,
RowId x)
|
|
void |
updateSQLXML(int columnIndex,
SQLXML xmlObject)
|
|
void |
updateSQLXML(String columnLabel,
SQLXML xmlObject)
|
Methods inherited from class org.melati.poem.dbms.test.sql.Thrower |
---|
shouldThrow, startThrowing, startThrowingAfter, stopThrowing |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ThrowingResultSetJdbc4()
Method Detail |
---|
public int getHoldability() throws SQLException
getHoldability
in interface ResultSet
SQLException
ResultSet.getHoldability()
public Reader getNCharacterStream(int columnIndex) throws SQLException
getNCharacterStream
in interface ResultSet
SQLException
ResultSet.getNCharacterStream(int)
public Reader getNCharacterStream(String columnLabel) throws SQLException
getNCharacterStream
in interface ResultSet
SQLException
ResultSet.getNCharacterStream(java.lang.String)
public NClob getNClob(int columnIndex) throws SQLException
getNClob
in interface ResultSet
SQLException
ResultSet.getNClob(int)
public NClob getNClob(String columnLabel) throws SQLException
getNClob
in interface ResultSet
SQLException
ResultSet.getNClob(java.lang.String)
public String getNString(int columnIndex) throws SQLException
getNString
in interface ResultSet
SQLException
ResultSet.getNString(int)
public String getNString(String columnLabel) throws SQLException
getNString
in interface ResultSet
SQLException
ResultSet.getNString(java.lang.String)
public RowId getRowId(int columnIndex) throws SQLException
getRowId
in interface ResultSet
SQLException
ResultSet.getRowId(int)
public RowId getRowId(String columnLabel) throws SQLException
getRowId
in interface ResultSet
SQLException
ResultSet.getRowId(java.lang.String)
public SQLXML getSQLXML(int columnIndex) throws SQLException
getSQLXML
in interface ResultSet
SQLException
ResultSet.getSQLXML(int)
public SQLXML getSQLXML(String columnLabel) throws SQLException
getSQLXML
in interface ResultSet
SQLException
ResultSet.getSQLXML(java.lang.String)
public boolean isClosed() throws SQLException
isClosed
in interface ResultSet
SQLException
ResultSet.isClosed()
public void updateAsciiStream(int columnIndex, InputStream x, long length) throws SQLException
updateAsciiStream
in interface ResultSet
SQLException
ResultSet.updateAsciiStream(int, java.io.InputStream, long)
public void updateAsciiStream(int columnIndex, InputStream x) throws SQLException
updateAsciiStream
in interface ResultSet
SQLException
ResultSet.updateAsciiStream(int, java.io.InputStream)
public void updateAsciiStream(String columnLabel, InputStream x, long length) throws SQLException
updateAsciiStream
in interface ResultSet
SQLException
ResultSet.updateAsciiStream(java.lang.String, java.io.InputStream, long)
public void updateAsciiStream(String columnLabel, InputStream x) throws SQLException
updateAsciiStream
in interface ResultSet
SQLException
ResultSet.updateAsciiStream(java.lang.String, java.io.InputStream)
public void updateBinaryStream(int columnIndex, InputStream x, long length) throws SQLException
updateBinaryStream
in interface ResultSet
SQLException
ResultSet.updateBinaryStream(int, java.io.InputStream, long)
public void updateBinaryStream(int columnIndex, InputStream x) throws SQLException
updateBinaryStream
in interface ResultSet
SQLException
ResultSet.updateBinaryStream(int, java.io.InputStream)
public void updateBinaryStream(String columnLabel, InputStream x, long length) throws SQLException
updateBinaryStream
in interface ResultSet
SQLException
ResultSet.updateBinaryStream(java.lang.String, java.io.InputStream, long)
public void updateBinaryStream(String columnLabel, InputStream x) throws SQLException
updateBinaryStream
in interface ResultSet
SQLException
ResultSet.updateBinaryStream(java.lang.String, java.io.InputStream)
public void updateBlob(int columnIndex, InputStream inputStream, long length) throws SQLException
updateBlob
in interface ResultSet
SQLException
ResultSet.updateBlob(int, java.io.InputStream, long)
public void updateBlob(int columnIndex, InputStream inputStream) throws SQLException
updateBlob
in interface ResultSet
SQLException
ResultSet.updateBlob(int, java.io.InputStream)
public void updateBlob(String columnLabel, InputStream inputStream, long length) throws SQLException
updateBlob
in interface ResultSet
SQLException
ResultSet.updateBlob(java.lang.String, java.io.InputStream, long)
public void updateBlob(String columnLabel, InputStream inputStream) throws SQLException
updateBlob
in interface ResultSet
SQLException
ResultSet.updateBlob(java.lang.String, java.io.InputStream)
public void updateCharacterStream(int columnIndex, Reader x, long length) throws SQLException
updateCharacterStream
in interface ResultSet
SQLException
ResultSet.updateCharacterStream(int, java.io.Reader, long)
public void updateCharacterStream(int columnIndex, Reader x) throws SQLException
updateCharacterStream
in interface ResultSet
SQLException
ResultSet.updateCharacterStream(int, java.io.Reader)
public void updateCharacterStream(String columnLabel, Reader reader, long length) throws SQLException
updateCharacterStream
in interface ResultSet
SQLException
ResultSet.updateCharacterStream(java.lang.String, java.io.Reader, long)
public void updateCharacterStream(String columnLabel, Reader reader) throws SQLException
updateCharacterStream
in interface ResultSet
SQLException
ResultSet.updateCharacterStream(java.lang.String, java.io.Reader)
public void updateClob(int columnIndex, Reader reader, long length) throws SQLException
updateClob
in interface ResultSet
SQLException
ResultSet.updateClob(int, java.io.Reader, long)
public void updateClob(int columnIndex, Reader reader) throws SQLException
updateClob
in interface ResultSet
SQLException
ResultSet.updateClob(int, java.io.Reader)
public void updateClob(String columnLabel, Reader reader, long length) throws SQLException
updateClob
in interface ResultSet
SQLException
ResultSet.updateClob(java.lang.String, java.io.Reader, long)
public void updateClob(String columnLabel, Reader reader) throws SQLException
updateClob
in interface ResultSet
SQLException
ResultSet.updateClob(java.lang.String, java.io.Reader)
public void updateNCharacterStream(int columnIndex, Reader x, long length) throws SQLException
updateNCharacterStream
in interface ResultSet
SQLException
ResultSet.updateNCharacterStream(int, java.io.Reader, long)
public void updateNCharacterStream(int columnIndex, Reader x) throws SQLException
updateNCharacterStream
in interface ResultSet
SQLException
ResultSet.updateNCharacterStream(int, java.io.Reader)
public void updateNCharacterStream(String columnLabel, Reader reader, long length) throws SQLException
updateNCharacterStream
in interface ResultSet
SQLException
ResultSet.updateNCharacterStream(java.lang.String, java.io.Reader, long)
public void updateNCharacterStream(String columnLabel, Reader reader) throws SQLException
updateNCharacterStream
in interface ResultSet
SQLException
ResultSet.updateNCharacterStream(java.lang.String, java.io.Reader)
public void updateNClob(int columnIndex, NClob clob) throws SQLException
updateNClob
in interface ResultSet
SQLException
ResultSet.updateNClob(int, java.sql.NClob)
public void updateNClob(int columnIndex, Reader reader, long length) throws SQLException
updateNClob
in interface ResultSet
SQLException
ResultSet.updateNClob(int, java.io.Reader, long)
public void updateNClob(int columnIndex, Reader reader) throws SQLException
updateNClob
in interface ResultSet
SQLException
ResultSet.updateNClob(int, java.io.Reader)
public void updateNClob(String columnLabel, NClob clob) throws SQLException
updateNClob
in interface ResultSet
SQLException
ResultSet.updateNClob(java.lang.String, java.sql.NClob)
public void updateNClob(String columnLabel, Reader reader, long length) throws SQLException
updateNClob
in interface ResultSet
SQLException
ResultSet.updateNClob(java.lang.String, java.io.Reader, long)
public void updateNClob(String columnLabel, Reader reader) throws SQLException
updateNClob
in interface ResultSet
SQLException
ResultSet.updateNClob(java.lang.String, java.io.Reader)
public void updateNString(int columnIndex, String string) throws SQLException
updateNString
in interface ResultSet
SQLException
ResultSet.updateNString(int, java.lang.String)
public void updateNString(String columnLabel, String string) throws SQLException
updateNString
in interface ResultSet
SQLException
ResultSet.updateNString(java.lang.String, java.lang.String)
public void updateRowId(int columnIndex, RowId x) throws SQLException
updateRowId
in interface ResultSet
SQLException
ResultSet.updateRowId(int, java.sql.RowId)
public void updateRowId(String columnLabel, RowId x) throws SQLException
updateRowId
in interface ResultSet
SQLException
ResultSet.updateRowId(java.lang.String, java.sql.RowId)
public void updateSQLXML(int columnIndex, SQLXML xmlObject) throws SQLException
updateSQLXML
in interface ResultSet
SQLException
ResultSet.updateSQLXML(int, java.sql.SQLXML)
public void updateSQLXML(String columnLabel, SQLXML xmlObject) throws SQLException
updateSQLXML
in interface ResultSet
SQLException
ResultSet.updateSQLXML(java.lang.String, java.sql.SQLXML)
public boolean isWrapperFor(Class<?> iface) throws SQLException
isWrapperFor
in interface Wrapper
SQLException
Wrapper.isWrapperFor(java.lang.Class)
public <T1> T1 unwrap(Class<T1> iface) throws SQLException
unwrap
in interface Wrapper
SQLException
Wrapper.unwrap(java.lang.Class)
|
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |