Uses of Class
org.seasar.doma.jdbc.BatchResult
Packages that use BatchResult
Package
Description
Provides entry points for the Criteria API.
Provides criteria query statements.
-
Uses of BatchResult in org.seasar.doma.jdbc.criteria
Methods in org.seasar.doma.jdbc.criteria that return types with arguments of type BatchResultModifier and TypeMethodDescription<ENTITY> Statement<BatchResult<ENTITY>>Entityql.delete(EntityMetamodel<ENTITY> entityMetamodel, List<ENTITY> entities) Deprecated, for removal: This API element is subject to removal in a future version.<ENTITY> Statement<BatchResult<ENTITY>>Entityql.delete(EntityMetamodel<ENTITY> entityMetamodel, List<ENTITY> entities, Consumer<DeleteSettings> settingsConsumer) Deprecated, for removal: This API element is subject to removal in a future version.<ENTITY> Statement<BatchResult<ENTITY>>Entityql.update(EntityMetamodel<ENTITY> entityMetamodel, List<ENTITY> entities) Deprecated, for removal: This API element is subject to removal in a future version.<ENTITY> Statement<BatchResult<ENTITY>>Entityql.update(EntityMetamodel<ENTITY> entityMetamodel, List<ENTITY> entities, Consumer<UpdateSettings> settingsConsumer) Deprecated, for removal: This API element is subject to removal in a future version. -
Uses of BatchResult in org.seasar.doma.jdbc.criteria.statement
Methods in org.seasar.doma.jdbc.criteria.statement that return BatchResultModifier and TypeMethodDescriptionEntityqlBatchDeleteStatement.execute()Executes the SQL statement.EntityqlBatchInsertIntermediate.execute()Executes the SQL statement.EntityqlBatchInsertStatement.execute()Executes the SQL statement.EntityqlBatchInsertTerminate.execute()Executes the SQL statement.EntityqlBatchUpdateStatement.execute()Executes the SQL statement.Methods in org.seasar.doma.jdbc.criteria.statement that return types with arguments of type BatchResultModifier and TypeMethodDescriptionDeletes the entities in batch.Updates the entities in batch.protected Command<BatchResult<ENTITY>>EntityqlBatchDeleteStatement.createCommand()protected Command<BatchResult<ENTITY>>EntityqlBatchInsertIntermediate.createCommand()protected Command<BatchResult<ENTITY>>EntityqlBatchInsertStatement.createCommand()protected Command<BatchResult<ENTITY>>EntityqlBatchInsertTerminate.createCommand()protected Command<BatchResult<ENTITY>>EntityqlBatchUpdateStatement.createCommand()EntityqlBatchInsertIntermediate.keys(PropertyMetamodel<?>... keys) Specify the keys used for duplicate checking UPSERT statement.