Package org.ozoneDB

Examples of org.ozoneDB.Setup


     * if one doesn't exists, create it.
     */
    private void initLocalDB() throws Exception {
        fLocalTestDir.mkdirs();
        File dbDir = File.createTempFile("OZT", null, fLocalTestDir);
        Setup defaults = new Setup(null);
        defaults.addProperties(System.getProperties(), "ozoneDB.");
        Install.createDB(dbDir.getPath() + ".dir", defaults, new PrintWriter(System.out, true));

        initDB("ozonedb:local://" + dbDir.getPath() + ".dir");
    }
View Full Code Here

TOP

Related Classes of org.ozoneDB.Setup

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.