8.7.153 supportsResultSetConcurrency(int type, int concurrency)
- 〈この項の構成〉
(1) 機能
指定した結果セットタイプと並行処理タイプの組み合わせをサポートしているかどうかを返します。
(2) 形式
public synchronized boolean supportsResultSetConcurrency(int type, int concurrency) throws SQLException
(3) 引数
- int type:
-
結果セットタイプを指定します。
- int concurrency:
-
並行処理タイプを指定します。
(4) 戻り値
- boolean型:
-
次に示すどちらかの値が返却されます。
true:サポートしています。
false:サポートしていません。
typeがResultSet.TYPE_FORWARD_ONLYまたはResultSet.TYPE_SCROLL_INSENSITIVE,かつconcurrencyがResultSet.CONCUR_READ_ONLYの場合,trueが返却されます。それ以外の場合はfalseが返却されます。
(5) 発生する例外
このメソッドを実行する前に,Connectionオブジェクトがクローズされている場合,SQLExceptionが投入されます。