[MyBatis源码分析系列] Transaction

xiaoxiao2025-02-15  18

Transaction

简介

包装数据库的连接java.sql.Connection。 处理连接的生命周期:创建,预编译,提交/回滚和关闭。

源码

public interface Transaction { Connection getConnection() throws SQLException; void commit() throws SQLException; void rollback() throws SQLException; void close() throws SQLException; Integer getTimeout() throws SQLException; }
转载请注明原文地址: https://www.6miu.com/read-5024840.html

最新回复(0)