Package org.seasar.doma.jdbc.command


package org.seasar.doma.jdbc.command
Provides classes and interfaces to execute SQL statements using the command pattern.

This package implements the command pattern for database operations, where each command encapsulates a specific database operation (such as select, insert, update, delete) along with its execution logic. Commands are responsible for executing queries and processing their results.

Commands work with query objects that contain SQL statements and parameters. They handle the execution of SQL, processing of results, and resource management.