public interface SQLResultSet extends AutoCloseable
| Modifier and Type | Method and Description |
|---|---|
<T,E> T |
get(Expression<T,E> expr)
Gets the value for the given expression.
|
<T,E> T |
get(Expression<T,E> expr,
SQLValueParser<T,E> parser)
Gets the value for the given expression.
|
<T,E> T |
get(int column,
SQLType<T,E> type)
Gets the value for the given column.
|
<T,E> T |
get(int column,
SQLType<T,E> type,
SQLValueParser<T,E> parser)
Gets the value for the given column.
|
boolean |
next()
Fetch the next record.
|
closeboolean next()
throws SQLException
SQLException - If any SQL error occurs.<T,E> T get(Expression<T,E> expr) throws SQLException
T - The final java type of the expression.E - The result set read java type of the expression.expr - The expression to find.SQLException - If any SQL error occurs.<T,E> T get(int column,
SQLType<T,E> type)
throws SQLException
T - The final java type of the expression.E - The result set read java type of the expression.column - The column number. starting in 1type - The type of the result.SQLException - If any SQL error occurs.<T,E> T get(Expression<T,E> expr, SQLValueParser<T,E> parser) throws SQLException
T - The final java type of the expression.E - The result set read java type of the expression.expr - The expression to find.parser - The parser to use.SQLException - If any SQL error occurs.<T,E> T get(int column,
SQLType<T,E> type,
SQLValueParser<T,E> parser)
throws SQLException
T - The final java type of the expression.E - The result set read java type of the expression.column - The column number. starting in 1type - The type of the result.parser - The parser to use.SQLException - If any SQL error occurs.Copyright © 2015–2018 Bridje Framework. All rights reserved.