hibernate如何判断数据是否被外键关联
hibernate中要删除数据时,如果数据被其他表数据关联的话会报错。怎么在删除前判断数据没有被关联。
举例:
user表 id,name
A表 id,userid
B表 id,userid
现在要删除user表中数据user1时 如何判断A,B表中是否有数据和user1关联。
不能直接遍历A,B表 因为可能还会有C表,D表。。。
举例:
user表 id,name
A表 id,userid
B表 id,userid
现在要删除user表中数据user1时 如何判断A,B表中是否有数据和user1关联。
不能直接遍历A,B表 因为可能还会有C表,D表。。。
作者: keeyce 发布时间: 2011-06-08
...查询下不就知道是否关联了么
作者: BearKin 发布时间: 2011-06-08
cascade=false
作者: guyanliang 发布时间: 2011-06-08