Uses of Class
nablarch.core.db.statement.SelectOption
Package
Description
ユニバーサルDAO機能を提供する。
データベース接続機能を提供する。
データベースの方言を吸収する機能を提供する。
データベースに対するSQL実行機能を提供する。
-
Uses of SelectOption in nablarch.common.dao
Modifier and TypeMethodDescriptionprotected nablarch.common.dao.SqlResourceHolder
BasicDaoContext.executeQuery
(String normalizedSqlId, Object params, SelectOption selectOption) 検索クエリを実行する。 -
Uses of SelectOption in nablarch.core.db.connection
Modifier and TypeMethodDescriptionAppDbConnection.prepareParameterizedSqlStatement
(String sql, Object condition, SelectOption selectOption) 検索範囲を指定して、名前付きパラメータをもつ可変条件SQL文実行用のStatementオブジェクトを生成する。AppDbConnection.prepareParameterizedSqlStatement
(String sql, SelectOption selectOption) 検索範囲を指定した名前付きパラメータをもつSQL文実行用のStatementオブジェクトを生成する。BasicDbConnection.prepareParameterizedSqlStatement
(String sql, Object condition, SelectOption selectOption) BasicDbConnection.prepareParameterizedSqlStatement
(String sql, SelectOption selectOption) AppDbConnection.prepareParameterizedSqlStatementBySqlId
(String sqlId, Object condition, SelectOption selectOption) 検索範囲を設定した名前付きパラメータをもつ可変条件SQL文実行用のStatementオブジェクトをSQL_IDを元に生成する。AppDbConnection.prepareParameterizedSqlStatementBySqlId
(String sqlId, SelectOption selectOption) 検索範囲を設定した名前付きパラメータをもつSQL文実行用のStatementオブジェクトをSQL_IDを元に生成する。BasicDbConnection.prepareParameterizedSqlStatementBySqlId
(String sqlId, Object condition, SelectOption selectOption) BasicDbConnection.prepareParameterizedSqlStatementBySqlId
(String sqlId, SelectOption selectOption) AppDbConnection.prepareStatement
(String sql, SelectOption selectOption) 検索範囲を指定したパラメータ付きSQL文実行用のStatementオブジェクトを生成する。BasicDbConnection.prepareStatement
(String sql, SelectOption selectOption) AppDbConnection.prepareStatementBySqlId
(String sqlId, SelectOption selectOption) 検索範囲を指定したパラメータ付きSQL文実行用のStatementオブジェクトをSQL_IDを元に生成する。BasicDbConnection.prepareStatementBySqlId
(String sqlId, SelectOption selectOption) -
Uses of SelectOption in nablarch.core.db.dialect
Modifier and TypeMethodDescriptionDefaultDialect.convertPaginationSql
(String sql, SelectOption selectOption) SQL文を変換せずに返す。Dialect.convertPaginationSql
(String sql, SelectOption selectOption) SQL文をページング用のSQL文に変換する。H2Dialect.convertPaginationSql
(String sql, SelectOption selectOption) SQL文を変換せずに返す。OracleDialect.convertPaginationSql
(String sql, SelectOption selectOption) SQL文を変換せずに返す。PostgreSQLDialect.convertPaginationSql
(String sql, SelectOption selectOption) SQL文を変換せずに返す。 -
Uses of SelectOption in nablarch.core.db.statement
Modifier and TypeMethodDescriptionBasicStatementFactory.getParameterizedSqlPStatement
(String sql, Connection con, DbExecutionContext context, SelectOption selectOption) ParameterizedSqlPStatementを生成し返却する。StatementFactory.getParameterizedSqlPStatement
(String sql, Connection con, DbExecutionContext context, SelectOption selectOption) ParameterizedSqlPStatement
を生成し返却する。BasicStatementFactory.getParameterizedSqlPStatementBySqlId
(String sql, String sqlId, Connection con, DbExecutionContext context, SelectOption selectOption) SQL_IDからParameterizedSqlPStatement
を生成し返却する(可変条件を持つSQL用)。StatementFactory.getParameterizedSqlPStatementBySqlId
(String sql, String id, Connection con, DbExecutionContext context, SelectOption selectOption) SQL_IDからParameterizedSqlPStatement
を生成し返却する(可変条件を持つSQL用)。BasicStatementFactory.getSqlPStatement
(String sql, Connection con, DbExecutionContext context, SelectOption option) SqlPStatement
を生成し返却する。StatementFactory.getSqlPStatement
(String sql, Connection con, DbExecutionContext context, SelectOption selectOption) SqlPStatement
を生成し返却する。void
BasicSqlPStatement.setSelectOption
(SelectOption selectOption) 検索処理条件を設定する。