クラスの使用
com.github.mygreen.sqlmapper.core.query.SelectForUpdateType
-
SelectForUpdateTypeを使用しているパッケージ パッケージ 説明 com.github.mygreen.sqlmapper.core.dialect データベースごとの方言のサポートを提供します。com.github.mygreen.sqlmapper.core.query クエリを扱うための機能を提供します。com.github.mygreen.sqlmapper.core.query.auto SQLの自動生成によるクエリ機能を提供します。 -
-
com.github.mygreen.sqlmapper.core.dialectでのSelectForUpdateTypeの使用
SelectForUpdateType型のパラメータを持つcom.github.mygreen.sqlmapper.core.dialectのメソッド 修飾子とタイプ メソッド 説明 StringDialect. getForUpdateSql(SelectForUpdateType type, int waitSeconds)SELECT文に付加するFOR UPDATE NOWAIT相当のSQLを返します。StringDialectBase. getForUpdateSql(SelectForUpdateType type, int waitSeconds)SELECT文に付加するFOR UPDATE NOWAIT相当のSQLを返します。StringOracleDialect. getForUpdateSql(SelectForUpdateType type, int waitSeconds)SELECT文に付加するFOR UPDATE NOWAIT相当のSQLを返します。booleanDialect. supportsSelectForUpdate(SelectForUpdateType type)SELECT文でFOR UPDATEをサポートしていればtrueを返します。booleanDialectBase. supportsSelectForUpdate(SelectForUpdateType type)SELECT文でFOR UPDATEをサポートしていればtrueを返します。booleanOracleDialect. supportsSelectForUpdate(SelectForUpdateType type)SELECT文でFOR UPDATEをサポートしていればtrueを返します。 -
com.github.mygreen.sqlmapper.core.queryでのSelectForUpdateTypeの使用
SelectForUpdateTypeを返すcom.github.mygreen.sqlmapper.core.queryのメソッド 修飾子とタイプ メソッド 説明 static SelectForUpdateTypeSelectForUpdateType. valueOf(String name)指定した名前を持つこの型の列挙型定数を返します。static SelectForUpdateType[]SelectForUpdateType. values()この列挙型の定数を含む配列を宣言されている順序で返します。 -
com.github.mygreen.sqlmapper.core.query.autoでのSelectForUpdateTypeの使用
SelectForUpdateTypeを返すcom.github.mygreen.sqlmapper.core.query.autoのメソッド 修飾子とタイプ メソッド 説明 SelectForUpdateTypeAutoSelectImpl. getForUpdateType()SELECT ~ FOR UPDATEのタイプです。
-