Package com.splout.db.engine

Examples of com.splout.db.engine.DefaultEngine


    assertEquals("CREATE INDEX idx_schema1_ab ON schema1(`a`, `b`);", createIndex[0]);
  }

  @Test
  public void test() throws Exception {
    runTest(new DefaultEngine());
   
    // Assert that the DB has been created successfully
   
    assertTrue(new File(OUTPUT + "/0.db").exists());
    SQLite4JavaClient manager = new SQLite4JavaClient(OUTPUT + "/0.db", null);
View Full Code Here

TOP

Related Classes of com.splout.db.engine.DefaultEngine

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.