/**
* 设置数据库是否自动提交事务
* @param flag
* @throws SQLException
*/
public void setAutoCommit(boolean flag) throws SQLException {
con.setAutoCommit(flag);
}

/**
* 提交
* @throws SQLException
*/
public void commit() throws SQLException {
con.commit();
}

/**
* 回滚
* @throws SQLException
*/
public void rollback() throws SQLException {
con.rollback();
}

定义一个全局变量Connection 第一个方法设置为false就是手动提交,这种方法适用于我们删除东西后重新再添加东西,类似权限管理系统这种可以用得上