Uses of Class
org.seasar.doma.jdbc.SelectOptions
Packages that use SelectOptions
Package
Description
Provides JDBC related interfaces and classes.
Provides classes to build dynamic SQL statements.
Provides the SQL queries and builders.
Provides RDBMS dialects.
Provides query objects that build and execute SQL statements.
-
Uses of SelectOptions in org.seasar.doma.jdbc
Methods in org.seasar.doma.jdbc that return SelectOptionsModifier and TypeMethodDescriptionSelectOptions.count()Indicates to count all rows.SelectOptions.forUpdate()Indicates to apply pessimistic locking.Indicates to apply pessimistic locking with specified aliases.SelectOptions.forUpdateNowait()Indicates to apply no-wait pessimistic locking.SelectOptions.forUpdateNowait(String... aliases) Indicates to apply no-wait pessimistic locking with specified aliases.SelectOptions.forUpdateWait(int waitSeconds) Indicates to apply pessimistic locking with specified wait seconds.SelectOptions.forUpdateWait(int waitSeconds, String... aliases) Indicates to apply pessimistic locking with specified wait seconds and aliases.static SelectOptionsSelectOptions.get()Creates a newSelectOptionsinstance.SelectOptions.limit(int limit) Indicates to apply the specified limit.SelectOptions.offset(int offset) Indicates to apply the the specified offset.Methods in org.seasar.doma.jdbc with parameters of type SelectOptionsModifier and TypeMethodDescriptionstatic String[]SelectOptionsAccessor.getAliases(SelectOptions options) static SelectForUpdateTypeSelectOptionsAccessor.getForUpdateType(SelectOptions options) static longSelectOptionsAccessor.getLimit(SelectOptions options) static longSelectOptionsAccessor.getOffset(SelectOptions options) static intSelectOptionsAccessor.getWaitSeconds(SelectOptions options) static booleanSelectOptionsAccessor.isCount(SelectOptions options) static voidSelectOptionsAccessor.setCountSize(SelectOptions options, long countSize) -
Uses of SelectOptions in org.seasar.doma.jdbc.builder
Methods in org.seasar.doma.jdbc.builder with parameters of type SelectOptionsModifier and TypeMethodDescriptionvoidSelectBuilder.options(SelectOptions options) Sets the options about the SQL SELECT execution. -
Uses of SelectOptions in org.seasar.doma.jdbc.criteria.query
Methods in org.seasar.doma.jdbc.criteria.query that return SelectOptions -
Uses of SelectOptions in org.seasar.doma.jdbc.dialect
Methods in org.seasar.doma.jdbc.dialect with parameters of type SelectOptionsModifier and TypeMethodDescriptionDialect.transformSelectSqlNode(SqlNode sqlNode, SelectOptions options) Transforms the SQL node for a SELECT statement according to the specified options.StandardDialect.transformSelectSqlNode(SqlNode sqlNode, SelectOptions options) -
Uses of SelectOptions in org.seasar.doma.jdbc.query
Fields in org.seasar.doma.jdbc.query declared as SelectOptionsModifier and TypeFieldDescriptionprotected SelectOptionsAbstractSelectQuery.optionsThe select options.Methods in org.seasar.doma.jdbc.query that return SelectOptionsModifier and TypeMethodDescriptionAbstractSelectQuery.getOptions()Returns the options for this select query.SelectQuery.getOptions()Returns the options for this select query.Methods in org.seasar.doma.jdbc.query with parameters of type SelectOptionsModifier and TypeMethodDescriptionvoidAbstractSelectQuery.setOptions(SelectOptions options) Sets the select options.