1.MYSQL的数据库引擎中,只有InnoDB和BDB(Berkley DB )包括了对事务处理和外键的支持.如果数据引擎建为MyISAM则rollback无效. 2.而hibernate自动建表的时候语句如下 Hibernate: create table USER ( id integer not null auto_increment, name varchar(255), password varchar(255), primary key (id) ) engine=MyISAM 即e