首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

Hibernate的数据交付顺序

2012-10-26 
Hibernate的数据提交顺序1.插入2.更新3.集合删除4.集合更新5.集合创建6.删除/** * Perform all currently

Hibernate的数据提交顺序
1.插入
2.更新
3.集合删除
4.集合更新
5.集合创建
6.删除

/** * Perform all currently queued actions. * * @throws HibernateException error executing queued actions. */public void executeActions() throws HibernateException {executeActions( insertions );executeActions( updates );executeActions( collectionRemovals );executeActions( collectionUpdates );executeActions( collectionCreations );executeActions( deletions );}

热点排行