This is a cache of http://dbflute.seasar.org/ja/manual/function/ormapper/behavior/select/index.html. It is a snapshot of the page at 2024-03-19T00:23:06.316+0000.
Behaviorの<strong>検索</strong>系 | <strong>dbflute</strong>

Behaviorの検索

selectCount(cb)
カウント検索
selectEntity(cb)
一件検索(結果がない場合はnullを戻す)
selectEntityWithDeletedCheck(cb)
一件検索(結果がない場合は例外発生)
selectByPKValue(pk)
PKによる一件検索(結果がない場合はnullを戻す)
selectByPKValueWithDeletedCheck(pk)
PKによる一件検索(結果がない場合は例外発生)
selectList(cb)
リスト検索
selectPage(cb)
ページング検索
selectCursor(cb, entityRowHandler)
カーソル検索(Entityへのマッピングなし)
selectNextVal()
シーケンス検索(登録時は自動取得されるので基本的に利用する必要なし)
scalarSelect(cb)
スカラ検索(max(), min(), avg()など)
LoadReferrer
子テーブルの取得(Refererrテーブル毎にメソッドがある)