public interface ResultSetInfo
javax.resource.cci.ResultSetInfo
は、接続された EIS インスタンスによって ResultSet に提供されるサポートに関する情報を提供します。コンポーネントがメソッド Connection.getResultInfo
を呼び出して、ResultSetInfo インスタンスを取得します。javax.resource.cci.ResultSetInfo
インターフェースをサポートするために CCI 実装は必要ありません。このインターフェースの実装は、CCI が ResultSet 機能をサポートしている場合にのみ提供されます。
Connection
, ResultSet
SE, ConnectionMetaData
修飾子と型 | メソッドと説明 |
---|---|
boolean | deletesAreDetected(int type) ResultSet.rowDeleted を呼び出して、表示されている行の削除を検出できるかどうかを示します。 |
boolean | insertsAreDetected(int type) ResultSet.rowInserted を呼び出して、表示されている行の挿入を検出できるかどうかを示します。 |
boolean | othersDeletesAreVisible(int type) 他の人による削除が表示されるかどうかを示します。 |
boolean | othersInsertsAreVisible(int type) 他の人が作成した挿入が表示されるかどうかを示します。 |
boolean | othersUpdatesAreVisible(int type) 他の人が行った更新が表示されるかどうかを示します。 |
boolean | ownDeletesAreVisible(int type) ResultSet 自身の削除が表示されるかどうかを示します。 |
boolean | ownInsertsAreVisible(int type) ResultSet 自身のインサートが表示されているかどうかを示します。 |
boolean | ownUpdatesAreVisible(int type) ResultSet 自体の更新が表示されているかどうかを示します。 |
boolean | supportsResultSetType(int type) リソースアダプターが ResultSet の型をサポートするかどうかを示します。 |
boolean | supportsResultTypeConcurrency(int type, int concurrency) リソースアダプターが、指定された ResultSet 型と組み合わせて同時実行型をサポートするかどうかを示します。/ |
boolean | updatesAreDetected(int type) メソッド ResultSet.rowUpdated を呼び出すことにより、表示されている行の更新を検出できるかどうかを示します。 |
boolean updatesAreDetected(int type) throws ResourceException
ResultSet.rowUpdated
を呼び出すことにより、表示されている行の更新を検出できるかどうかを示します。type
- ResultSet の型(例: ResultSet.TYPE_XXX)ResourceException
- 情報の取得に失敗しました ResultSet.rowUpdated()
SEboolean insertsAreDetected(int type) throws ResourceException
type
- ResultSet の型(例: ResultSet.TYPE_XXX)ResourceException
- 情報の取得に失敗しました ResultSet.rowInserted()
SEboolean deletesAreDetected(int type) throws ResourceException
type
- ResultSet の型(例: ResultSet.TYPE_XXX)ResourceException
- 情報の取得に失敗しました ResultSet.rowDeleted()
SEboolean supportsResultSetType(int type) throws ResourceException
type
- ResultSet の型(例: ResultSet.TYPE_XXX)ResourceException
- 情報の取得に失敗しました boolean supportsResultTypeConcurrency(int type, int concurrency) throws ResourceException
type
- ResultSet の型(例: ResultSet.TYPE_XXX)concurrency
- java.sql.ResultSet で定義された ResultSet 同時実行型 ResourceException
- 情報の取得に失敗しました boolean othersUpdatesAreVisible(int type) throws ResourceException
type
- ResultSet の型(例: ResultSet.TYPE_XXX)ResourceException
- 情報の取得に失敗しました boolean othersDeletesAreVisible(int type) throws ResourceException
type
- ResultSet の型(例: ResultSet.TYPE_XXX)ResourceException
- 情報の取得に失敗しました boolean othersInsertsAreVisible(int type) throws ResourceException
type
- ResultSet の型(例: ResultSet.TYPE_XXX)ResourceException
- 情報の取得に失敗しました boolean ownUpdatesAreVisible(int type) throws ResourceException
type
- ResultSet の型(例: ResultSet.TYPE_XXX)ResourceException
- 情報の取得に失敗しました boolean ownInsertsAreVisible(int type) throws ResourceException
type
- ResultSet の型(例: ResultSet.TYPE_XXX)ResourceException
- 情報の取得に失敗しました boolean ownDeletesAreVisible(int type) throws ResourceException
type
- ResultSet の型(例: ResultSet.TYPE_XXX)ResourceException
- 情報の取得に失敗しました Copyright © 2019 Eclipse Foundation.
Use is subject to license terms.