Package org.apache.ojb.broker

Examples of org.apache.ojb.broker.Table_1Object


        db.open(databaseName, Database.OPEN_READ_WRITE);
        try
        {
            Transaction tx = odmg.newTransaction();
            tx.begin();
            Table_1Object table1Ojb = new Table_1Object();
            db.makePersistent(table1Ojb);
            tx.commit();
        }
        finally
        {
View Full Code Here


        db.open(databaseName, Database.OPEN_READ_WRITE);
        try
        {
            Transaction tx = odmg.newTransaction();
            tx.begin();
            Table_1Object table1Obj = new Table_1Object();
            Table_2Object table2Obj = new Table_2Object();
            table1Obj.setTable2Object(table2Obj);
            db.makePersistent(table2Obj);
            db.makePersistent(table1Obj);
            tx.commit();
        }
        finally
View Full Code Here

TOP

Related Classes of org.apache.ojb.broker.Table_1Object

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.