java.lang.Object
org.seasar.doma.jdbc.query.AbstractQuery
org.seasar.doma.jdbc.query.SqlBatchModifyQuery
org.seasar.doma.jdbc.query.SqlBatchDeleteQuery
- All Implemented Interfaces:
BatchDeleteQuery,BatchModifyQuery,Query
A query that performs batch delete operations using SQL statements.
This class extends SqlBatchModifyQuery to provide functionality for executing batch
DELETE statements. It initializes the SQL kind to SqlKind.DELETE to indicate that this
query performs DELETE operations.
-
Field Summary
Fields inherited from class org.seasar.doma.jdbc.query.SqlBatchModifyQuery
batchSize, kind, optimisticLockCheckRequired, parameters, parameterSize, sqlLogType, sqlNode, sqlsFields inherited from class org.seasar.doma.jdbc.query.AbstractQuery
callerClassName, callerMethodName, config, message, method, queryTimeout -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class org.seasar.doma.jdbc.query.SqlBatchModifyQuery
addParameter, clearParameters, complete, getBatchSize, getSql, getSqlExecutionSkipCause, getSqlLogType, getSqls, isAutoGeneratedKeysSupported, isExecutable, isOptimisticLockCheckRequired, prepare, prepareOptions, prepareSql, setBatchSize, setSqlLogType, setSqlNode, toStringMethods inherited from class org.seasar.doma.jdbc.query.AbstractQuery
comment, getClassName, getConfig, getMethod, getMethodName, getQueryTimeout, setCallerClassName, setCallerMethodName, setConfig, setMessage, setMethod, setQueryTimeoutMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface org.seasar.doma.jdbc.query.BatchModifyQuery
getBatchSize, getSql, getSqlExecutionSkipCause, getSqlLogType, getSqls, isAutoGeneratedKeysSupported, isExecutable, isOptimisticLockCheckRequiredMethods inherited from interface org.seasar.doma.jdbc.query.Query
comment, complete, getClassName, getConfig, getMethod, getMethodName, getQueryTimeout, prepare
-
Constructor Details
-
SqlBatchDeleteQuery
public SqlBatchDeleteQuery()Constructs a new instance.This constructor initializes the query with
SqlKind.DELETEto indicate that it performs DELETE operations.
-