java.sql.ResultSet
: ResultSet.TYPE_FORWARD_ONLY
, ResultSet.TYPE_SCROLL_INSENSITIVE
, or ResultSet.TYPE_SCROLL_SENSITIVE
@param concurrency a concurrency type, which may be one of ResultSet.CONCUR_READ_ONLY
or ResultSet.CONCUR_UPDATABLE
.
@return true
if that concurrency and ResultSet typepairing is supported otherwise false
.
@throws SQLException a database error occurred
The result is similar to {@link java.sql.DatabaseMetaData#supportsResultSetConcurrency(int,int)}, except that the JdbcOdbc bridge in JDK 1.6 overstates its abilities. See bug 1690406.
@param type defined in {@link java.sql.ResultSet}
@param concurrency type defined in {@link java.sql.ResultSet}
@return true
if so; false
otherwise
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|