/* * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ package com.github.geophile.erdo.examples.helloworld; import com.github.geophile.erdo.Database; import com.github.geophile.erdo.util.FileUtil; import java.io.File; import java.io.IOException; public class CreateDatabase { public static void main(String[] args) throws IOException, InterruptedException { File DB_DIRECTORY = new File(FileUtil.tempDirectory(), "mydb"); Database db = Database.createDatabase(DB_DIRECTORY); db.close(); System.out.println(String.format("Database created in %s", DB_DIRECTORY)); } }