http://www.muxuanli.com/lmx/
有两张表,结构如下:
t_item: t_bid:
id int id int
name varchar name varchar
item_id int
其中表t_item的主键id是表t_bid的item_id字段的外键。那么在这种情况下,如果删除表t_item中的记录,并且该记录中的id主键被t_bid中的item_id字段所引用,就会抛出如下异常:
ERROR 1451 (23000): Cannot delete or update a parent row: a foreign key constraint fails (`test/t_bid`, CONSTRAINT `fk_id` FOREIGN KEY (`id`) REFERENCES `t_item
` (`id`))
解决方法:级联删除,即在删除t_item表中的记录时同时删除t_bid表中的相关记录
(1) 增加外键约束时声明级联删除,即:
alter table t_bid add constraint fk_id foreign key(id) references
key(id) on delete cascade;
(2) 使用触发器:在删除t_item表中记录之前先删除与之相关的t_bid表中的记录。
触发器代码(MySQL):
delimiter //
create trigger tri_delete before delete on t_item
for each row
begin
delete from t_bid where id = old.id;
end //
Hibernate中的解决方案:
这个问题在Hibernate中相对容易解决,只需设置cascade = “delete”即可。此时观察发出的sql语句:
Hibernate: select item0_.id as id0_0_, item0_.name as name0_0_ from t_item item0_ where item0_.id=?
Hibernate: select bids0_.item_id as item3_1_, bids0_.id as id1_, bids0_.id as id1_0_, bids0_.price as price1_0_, bids0_.item_id as item3_1_0_ from t_bid bids0_ where bids0_.item_id=?
Hibernate: update t_bid set item_id=null where item_id=?
Hibernate: delete from t_bid where id=?
Hibernate: delete from t_bid where id=?
Hibernate: delete from t_item where id=?
发现在删除t_bid表中记录之前会先将它的item_id字段值设置为null,但如果我们在映射文件中设置item_id字段不能为null,即设置Bid.hbm.xml文件为:
<many-to-one name="item" column="item_id" class="po.Item" not-null="true"/>
注意不能在Item.hbm.xml文件中进行如下设置(即在key元素中指定not-null="true"):
<set name="bids" cascade="all">
<key column="item_id" not-null="true"/>
<one-to-many class="po.Bid"/>
</set>
这样会抛出"Repeated column in mapping for entity"异常
http://www.iteye.com/topic/786535
如果我们指定item_id字段值不能为null,那么在删除时会抛出如下异常:
org.hibernate.exception.GenericJDBCException: Could not execute JDBC batch update···
Caused by: java.sql.BatchUpdateException: Data truncation: Column set to default value; NULL supplied to NOT NULL column 'item_id' at row 1
•••
此时的解决方法是设置inverse="true",这在Hibernate文档中有相应的描述:
Very Important Note: If the <key> column of a <one-to-many> association is declared NOT NULL, Hibernate may cause constraint violations when it creates or updates the association. To prevent this problem, you must use a bidirectional association with the many valued end (the set or bag) marked as inverse="true".
观察此时发出的sql语句:
Hibernate: select item0_.id as id1_0_, item0_.name as name1_0_ from t_item item0_ where item0_.id=?
Hibernate: select bids0_.item_id as item3_1_, bids0_.id as id1_, bids0_.id as id0_0_, bids0_.amount as amount0_0_, bids0_.item_id as item3_0_0_ from t_bid bids0_ where bids0_.item_id=?
Hibernate: delete from t_bid where id=?
Hibernate: delete from t_bid where id=?
Hibernate: delete from t_item where id=?
没有发出update语句。关于inverse="true"的理解:
http://lijiejava.iteye.com/blog/776587
分享到:
相关推荐
student表的主键是selectedcourse表的外键,当需要删除student表内的一行数据时,必须在selectedcourse表内设置该外键在删除时的属性方能实现删除。 当我想删除student表内的某行数据时,也需要删除selectedcourse...
当尝试删除一个表而该表包含其他表所依赖的字段时,MySQL会抛出错误1217(23000),提示“Cannot delete or update a parent row: a foreign key constraint fails”。为了解决这个问题,我们可以利用MySQL中的一个...
这篇文章主要涉及到在数据创建表时,遇到ERROR 1215 (HY000): Cannot add foreign key constraint 问题方面的内容,对于在数据创建表时,遇到同样问题感兴趣的同学可以参考一下。 一、问题的提出 创建两个表: ...
当试图删除一个被其他表的外键引用的行时,MySQL会抛出错误[Err] 1451,提示“Cannot delete or update a parent row: a foreign key constraint fails”,阻止操作执行,以防止破坏数据的完整性。 解决这个问题的...
(1452, 'Cannot add or update a child row: a foreign key constraint fails (`mxonline`.`django_admin_log`, CONSTRAINT `django_admin_log_user_id_c564eba6_fk_auth_user_id` FOREIGN KEY (`user_id`) ...
Foreign Key Constraint Fails(亲测可用).md
Cannot delete or update a parent row: a foreign key constraint fails (...) 这可能是MySQL在InnoDB中设置了foreign key关联,造成无法更新或删除数据。可以通过设置FOREIGN_KEY_CHECKS变量来避免这种情况。 SET ...
持久化异常是指在使用 Mybatis 更新数据库时,报错 Cannot delete or update a parent row: a foreign key constraint fails。这种异常的原因是因为在更新 user 表时,未更改外键值 user_id,导致外键约束失败。解决...
错误提示:`Cannot delete or update a parent row: a foreign key constraint fails`. 5. **移除外键约束**: - 可以通过ALTER TABLE命令移除已有的外键约束。 ```sql ALTER TABLE xiaodi DROP FOREIGN KEY ...
9. 错误1452: Cannot add or update a child row: a foreign key constraint fails 外键约束失败通常发生在尝试删除或更新父表中的记录,而子表中仍有关联的记录。在执行操作前,先检查并处理好外键约束。 10. 错误...
7. 错误代码1452: "Cannot add or update a child row: a foreign key constraint fails",意味着你尝试添加或更新的数据违反了外键约束,父表中没有对应的记录。 8. 错误代码1366: "Incorrect integer value: '...
总的来说,Django的`ForeignKey`提供了灵活的模型关联方式,可以适应不同场景的需求,包括是否启用数据库的`FOREIGN KEY`约束以及在删除关联对象时的行为控制。同时,`auto_now=True`属性提供了方便的时间戳管理,但...
在这种情况下,需要使用EXCEPTIONS INTO子句来捕获和处理异常,例如: ```sql ALTER TABLE dept ENABLE CONSTRAINT pk_dept EXCEPTIONS INTO EXCEPTIONS; ``` 这将将异常信息记录到EXCEPTIONS表中,可以使用SELECT...
在数据库技术中,外键(Foreign Key)是一个重要的概念,它是关系数据库模型中用来实现数据表之间关联的机制。本文将深入探讨外键的含义、作用、定义方式以及如何在SQL语言中创建和使用外键。 一、外键的含义与作用...
constraint 外键名 foreign key(字段) references 主表(字段) on delete 级联动作 on update 级联动作 3、级联动作 1、cascade :删除、更新同步(被参考字段) 2、restrict :不让主表更新、删除 3、set null...
+ 外键约束:alter table 从表名 add constraint 约束名 foreign key (字段名) references 主表名 (字段名) + 检查约束:alter table 表名 add constraint 约束名 check (条件) * 删除约束:alter table 表名 drop...
- `ON DELETE CASCADE ON UPDATE CASCADE`: 定义了当`A`表中的相关记录被删除或更新时,自动级联删除或更新`C`表中的相关记录。 ### 结合案例分析 考虑下面的场景:表`A`和`C`之间的关联,`A`表结构为`(id, xx, xx...