Package com.mobixess.jodb.tests.testobjects

Examples of com.mobixess.jodb.tests.testobjects.ObjectWithNativeTransientID


        File testFileDir = new File(_testPath+"/testData/");
        testFileDir.mkdirs();
        File testFile = new File(testFileDir,SimpleAddTest.class.getSimpleName()+(_testCounter++)+".jdb");
        testFile.delete();
        JODBSessionContainer sessionContainer = getContainerForFile(testFile);
        ObjectWithNativeTransientID objectWithTransientID = new ObjectWithNativeTransientID();
        objectWithTransientID._memb1 = 1;
        objectWithTransientID._memb2 = 2;
        objectWithTransientID._memb3 = objectWithTransientID;
        sessionContainer.set(objectWithTransientID);
        sessionContainer.close();
View Full Code Here

TOP

Related Classes of com.mobixess.jodb.tests.testobjects.ObjectWithNativeTransientID

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.