Class JdbcTransaction

java.lang.Object
org.apache.ibatis.transaction.jdbc.JdbcTransaction
All Implemented Interfaces:
Transaction

public class JdbcTransaction extends Object implements Transaction
Transaction that makes use of the JDBC commit and rollback facilities directly. It relies on the connection retrieved from the dataSource to manage the scope of the transaction. Delays connection retrieval until getConnection() is called. Ignores commit or rollback requests when autocommit is on.
Author:
Clinton Begin
See Also: