Database
orm_java.txt
Associated article: Object-Relational Mapping in Java with SimpleORM
Tags: Database JVM Languages
Published source code accompanying the article by Martin Snyder and Ted O'Connor in which they examine SimpleORM, a lightweight--yet powerful--object- relational mapping implementation. Also see ORM_JAVA.ZIP.
Object-Relational Mapping in Java with SimpleORM
by Martin Snyder and Ted O'Connor
Listing One
public static class Folder extends SRecordInstance
{
static SRecordMeta s_meta = new SRecordMeta(Folder.class, "FOLDER");
static SFieldInteger ID = new SFieldInteger(s_meta,"ID&...


