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 and Description |
---|
SQLite4JResultSet(java.sql.ResultSet rs) |
Modifier and Type | Method and Description |
---|---|
boolean |
absolute(int row) |
void |
afterLast() |
void |
beforeFirst() |
void |
clearWarnings() |
void |
close() |
int |
findColumn(java.lang.String columnName) |
boolean |
first() |
BigDecimal |
getBigDecimal(int columnIndex) |
BigDecimal |
getBigDecimal(int columnIndex,
int scale) |
BigDecimal |
getBigDecimal(java.lang.String columnName) |
BigDecimal |
getBigDecimal(java.lang.String columnName,
int scale) |
boolean |
getBoolean(int columnIndex) |
boolean |
getBoolean(java.lang.String columnName) |
byte |
getByte(int columnIndex) |
byte |
getByte(java.lang.String columnName) |
byte[] |
getBytes(int columnIndex) |
byte[] |
getBytes(java.lang.String columnName) |
int |
getConcurrency() |
java.lang.String |
getCursorName() |
Date |
getDate(int columnIndex) |
Date |
getDate(java.lang.String columnName) |
double |
getDouble(int columnIndex) |
double |
getDouble(java.lang.String columnName) |
int |
getFetchDirection() |
int |
getFetchSize() |
double |
getFloat(int columnIndex) |
double |
getFloat(java.lang.String columnName) |
int |
getInt(int columnIndex) |
int |
getInt(java.lang.String columnName) |
long |
getLong(int columnIndex) |
long |
getLong(java.lang.String columnName) |
ResultSetMetaData |
getMetaData() |
java.lang.Object |
getObject(int columnIndex) |
java.lang.Object |
getObject(java.lang.String columnName) |
int |
getRow() |
short |
getShort(int columnIndex) |
short |
getShort(java.lang.String columnName) |
Statement |
getStatement() |
java.lang.String |
getString(int columnIndex) |
java.lang.String |
getString(java.lang.String columnName) |
Time |
getTime(int columnIndex) |
Time |
getTime(java.lang.String columnName) |
Timestamp |
getTimestamp(int columnIndex) |
Timestamp |
getTimestamp(java.lang.String columnName) |
int |
getType() |
java.sql.SQLWarning |
getWarnings() |
boolean |
isAfterLast() |
boolean |
isBeforeFirst() |
boolean |
isFirst() |
boolean |
isLast() |
boolean |
last() |
boolean |
next() |
boolean |
previous() |
boolean |
relative(int rows) |
void |
setFetchDirection(int direction) |
void |
setFetchSize(int rows) |
boolean |
wasNull() |
public boolean next() throws java.sql.SQLException
public void close() throws java.sql.SQLException
public boolean wasNull() throws java.sql.SQLException
public java.lang.String getString(int columnIndex) throws java.sql.SQLException
public boolean getBoolean(int columnIndex) throws java.sql.SQLException
getBoolean
in interface ResultSet
java.sql.SQLException
public byte getByte(int columnIndex) throws java.sql.SQLException
public short getShort(int columnIndex) throws java.sql.SQLException
public int getInt(int columnIndex) throws java.sql.SQLException
public long getLong(int columnIndex) throws java.sql.SQLException
public double getFloat(int columnIndex) throws java.sql.SQLException
java.sql.SQLException
public double getDouble(int columnIndex) throws java.sql.SQLException
public BigDecimal getBigDecimal(int columnIndex, int scale) throws java.sql.SQLException
getBigDecimal
in interface ResultSet
java.sql.SQLException
public byte[] getBytes(int columnIndex) throws java.sql.SQLException
public Date getDate(int columnIndex) throws java.sql.SQLException
public Time getTime(int columnIndex) throws java.sql.SQLException
public Timestamp getTimestamp(int columnIndex) throws java.sql.SQLException
getTimestamp
in interface ResultSet
java.sql.SQLException
public java.lang.String getString(java.lang.String columnName) throws java.sql.SQLException
public boolean getBoolean(java.lang.String columnName) throws java.sql.SQLException
getBoolean
in interface ResultSet
java.sql.SQLException
public byte getByte(java.lang.String columnName) throws java.sql.SQLException
public short getShort(java.lang.String columnName) throws java.sql.SQLException
public int getInt(java.lang.String columnName) throws java.sql.SQLException
public long getLong(java.lang.String columnName) throws java.sql.SQLException
public double getFloat(java.lang.String columnName) throws java.sql.SQLException
java.sql.SQLException
public double getDouble(java.lang.String columnName) throws java.sql.SQLException
public BigDecimal getBigDecimal(java.lang.String columnName, int scale) throws java.sql.SQLException
getBigDecimal
in interface ResultSet
java.sql.SQLException
public byte[] getBytes(java.lang.String columnName) throws java.sql.SQLException
public Date getDate(java.lang.String columnName) throws java.sql.SQLException
public Time getTime(java.lang.String columnName) throws java.sql.SQLException
public Timestamp getTimestamp(java.lang.String columnName) throws java.sql.SQLException
getTimestamp
in interface ResultSet
java.sql.SQLException
public java.sql.SQLWarning getWarnings() throws java.sql.SQLException
getWarnings
in interface ResultSet
java.sql.SQLException
public void clearWarnings() throws java.sql.SQLException
clearWarnings
in interface ResultSet
java.sql.SQLException
public java.lang.String getCursorName() throws java.sql.SQLException
getCursorName
in interface ResultSet
java.sql.SQLException
public ResultSetMetaData getMetaData() throws java.sql.SQLException
getMetaData
in interface ResultSet
java.sql.SQLException
public java.lang.Object getObject(int columnIndex) throws java.sql.SQLException
public java.lang.Object getObject(java.lang.String columnName) throws java.sql.SQLException
public int findColumn(java.lang.String columnName) throws java.sql.SQLException
findColumn
in interface ResultSet
java.sql.SQLException
public BigDecimal getBigDecimal(int columnIndex) throws java.sql.SQLException
getBigDecimal
in interface ResultSet
java.sql.SQLException
public BigDecimal getBigDecimal(java.lang.String columnName) throws java.sql.SQLException
getBigDecimal
in interface ResultSet
java.sql.SQLException
public boolean isBeforeFirst() throws java.sql.SQLException
isBeforeFirst
in interface ResultSet
java.sql.SQLException
public boolean isAfterLast() throws java.sql.SQLException
isAfterLast
in interface ResultSet
java.sql.SQLException
public boolean isFirst() throws java.sql.SQLException
public boolean isLast() throws java.sql.SQLException
public void beforeFirst() throws java.sql.SQLException
beforeFirst
in interface ResultSet
java.sql.SQLException
public void afterLast() throws java.sql.SQLException
public boolean first() throws java.sql.SQLException
public boolean last() throws java.sql.SQLException
public int getRow() throws java.sql.SQLException
public boolean absolute(int row) throws java.sql.SQLException
public boolean relative(int rows) throws java.sql.SQLException
public boolean previous() throws java.sql.SQLException
public void setFetchDirection(int direction) throws java.sql.SQLException
setFetchDirection
in interface ResultSet
java.sql.SQLException
public int getFetchDirection() throws java.sql.SQLException
getFetchDirection
in interface ResultSet
java.sql.SQLException
public void setFetchSize(int rows) throws java.sql.SQLException
setFetchSize
in interface ResultSet
java.sql.SQLException
public int getFetchSize() throws java.sql.SQLException
getFetchSize
in interface ResultSet
java.sql.SQLException
public int getType() throws java.sql.SQLException
public int getConcurrency() throws java.sql.SQLException
getConcurrency
in interface ResultSet
java.sql.SQLException
public Statement getStatement() throws java.sql.SQLException
getStatement
in interface ResultSet
java.sql.SQLException