getType()
Syntax:
int getType() throws SQLException
Description:
Retrieves the type of this ResultSet
object. The type is determined by the Statement
object that created the result set.
Returns:
the result set type - one of ResultSet.TYPE_FORWARD_ONLY
, ResultSet.TYPE_FORWARD_ONLY
, or ResultSet.TYPE_SCROLL_INSENSITIVE
. Since RaimaDB currently only supports forward-only result sets, this method will always return ResultSet. TYPE_FORWARD_ONLY
.
Throws:
SQLException - if a database access error occurs
Reference:
For more information, reference JDBC documentation for: ResultSet.getType()