Package org.hibernate.sql.exec.spi


@Incubating package org.hibernate.sql.exec.spi
SPI for execution of SQL statements via JDBC. The statement to execute is modeled by JdbcOperation and is executed via the corresponding executor - either JdbcSelectExecutor or JdbcMutationExecutor.

For operations that return ResultSets, be sure to see org.hibernate.sql.results which provides support for processing results starting with JdbcValuesMapping.

Also provides support for pessimistic locking as part of JDBC select handling. For details, see JdbcSelectWithActions, JdbcSelect.getLoadedValuesCollector(), FollowOnLockingAction and friends.