JVM Languages
persist.txt
Associated article: Object PersistenceBeyond Serialization
Tags: JVM Languages
Published source code accompanying the article by Timo Salo, Justin Hill, Scott Rich, Chuck Bridgham, and Daniel Berg in which they describe techniques and frameworks necessary to successfully implement scalable object persistence for complex database systems. Much of the technology they examine has been incorporated in development tools ranging from VisualAge for Java, to EJB tools for WebSphere.
Object Persistence: Beyond Serialization by Timo Salo, Justin Hill, Scott Rich, Chuck Bridgham, Daniel Berg Example 1: update address set streetno=34, ... where custno=456 and streetno=56 ... Example 2: Transaction tx = Transaction new(); EmployeeHomeImpl empHome = EmployeeHomeImpl.singleton(); Employee emp; AddressHomeImpl addrHome = AddressHomeImpl.singleton(); Address ...


