英文:
using jdbc api to rollback transcation fail
问题
当我使用 JDBC API 来回滚 SQL 时,它不起作用。我想知道问题出在哪里?
以下是代码:
connection.setAutocommit(false);
statement.execute("create table xxx");
connection.rollback();
表 xxx 应该被回滚。
英文:
when I using jdbc api to rollback sql, it doesnot work. i wonder where is this the problem?
here is the codes:
connection.setAutocommit(false);
statement.execute("create table xxx");
connection.rollback();
table xxx should be rollbacked.
答案1
得分: 1
你无法回滚表的创建。所有 DDL 操作 都无法回滚。
你可以查看文档中的 无法回滚的语句。
英文:
You can't rollback the creation of a table. All DDL operation can't be rollbacked
You can check the doc statements that can not be rollbacked
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论