HibernateGossip 更新記錄

  • 2011/3/11
https://openhome.cc/Gossip/HibernateGossip/IsolationLevel.html
加入一些基本作法的補充。。XD

  • 2010/10/13
https://openhome.cc/Gossip/HibernateGossip/IsolationLevel.html
作了一些修改。。XD
  • 2008/12/23
複 合主鍵(一)

在表格中,"name"與"age"被定義為複合主鍵,在映射時,您可以讓User類別直接帶有"name"與"age"這兩個屬性

改為:

在表格中,"name"與"phone"被定義為複合主鍵,在映射時,您可以讓User類別直接帶有"name"與"phone"這兩個屬性
  • 2008/10/28
https://openhome.cc/Gossip/HibernateGossip/IsolationLevel.html
加一個表格:
隔離層級 Dirty Read Unrepeatable Read Phantom Read
Read uncommitted YES YES YES
Read committed NO YES YES
Repreatable read NO NO YES
Serializable NO NO NO

  • 2007/11/21
增加了許多東西。。本來想寫更多的,後來覺得太細了XD
  • 2006/10/20
https://openhome.cc/Gossip/HibernateGossip/ContainerLazyInitialization.html
Hibernate.initialize(user.getEmails()); // 先載入容器中的物件

改為…
Hibernate.initialize(user); // 先載入容器中的物件
  • 2006/8/27
新增 Blob、Clob - Oracle 9i
  • 2006/7/24
https://openhome.cc/Gossip/HibernateGossip/DataIdentity.html
上面這個程式片段將會顯示true的結果,表示obj1與obj2是參考至同一物件,但如果是以下的情況則不會顯示false:

改成:
上面這個程式片段將會顯示true的結果,表示obj1與obj2是參考至同一物件,但如果是以下的情況則會顯示false:
  • 2006/1/13
https://openhome.cc/Gossip/HibernateGossip/QueryListIterator.html
list()與iterate()的寫相反了啦。。。XD
  • 2006/1/11
https://openhome.cc/Gossip/HibernateGossip/DataIdentity.html
一些程式碼打錯啦。。。hashCode打成hasCode。。。XD
  • 2005/12/30
https://openhome.cc/Gossip/HibernateGossip/ConfigFile.html
預設的XML配置文件名稱是hibernate.cfg.xml,您也可以自行指定檔案,例如:
Configuration config = new Configuration().configure().configure("db.cfg.xml");

修改為:
預設的XML配置文件名稱是hibernate.cfg.xml,您也可以自行指定檔案,例如:
Configuration config = new Configuration().configure("db.cfg.xml");
SessionFactory sf = config.buildSessionFactory();

  • 2005/10/28更新
改一下 「這份文件將以之前 Hibernate 2 時撰寫的 文 件 為基礎」 中 「文件」的連結網址而已。。。XD
  • 2005/10/17更新
將一些地方的字型改為Courier,應該比較好看 吧!。。。:)