2020
09-27
09-27
JAVA设置手动提交事务,回滚事务,提交事务的操作
我就废话不多说啦,还是直接看代码吧!/***设置数据库是否自动提交事务*@paramflag*@throwsSQLException*/publicvoidsetAutoCommit(booleanflag)throwsSQLException{con.setAutoCommit(flag);}/***提交*@throwsSQLException*/publicvoidcommit()throwsSQLException{con.commit();}/***回滚*@throwsSQLException*/publicvoidrollback()throwsSQLException{con.rollb...
继续阅读 >