Examples of ODatabaseObjectTx


Examples of com.orientechnologies.orient.core.db.object.ODatabaseObjectTx

  @Test
  public void testFetchedJson() {
    Orient.instance().registerEngine(new OEngineRemote());

    ODatabaseObjectTx database = new ODatabaseObjectTx(url);
    database.open("admin", "admin");
    database.getEntityManager().registerEntityClasses("com.orientechnologies.orient.test.domain");

    List<ODocument> result = database.getUnderlying()
        .command(new OSQLSynchQuery<ODocument>("select * from Profile where name = 'Barack' and surname = 'Obama'")).execute();
    int i = 0;
    for (ODocument doc : result) {
      String jsonFull = doc.toJSON("type,rid,version,class,attribSameRow,indent:0,fetchPlan:*:-1");
      ODocument loadedDoc = new ODocument().fromJSON(jsonFull);
View Full Code Here

Examples of com.orientechnologies.orient.core.db.object.ODatabaseObjectTx

  private int                callbackCount  = 0;
  private Profile            p;

  @Parameters(value = "url")
  public HookTest(String iURL) {
    database = new ODatabaseObjectTx(iURL);
  }
View Full Code Here

Examples of com.orientechnologies.orient.core.db.object.ODatabaseObjectTx

  private int                callbackCount  = 0;
  private Profile            p;

  @Parameters(value = "url")
  public HookTxTest(String iURL) {
    database = new ODatabaseObjectTx(iURL);
  }
View Full Code Here

Examples of com.orientechnologies.orient.core.db.object.ODatabaseObjectTx

  @Override
  public void init() {
    OProfiler.getInstance().startRecording();

    database = new ODatabaseObjectTx(System.getProperty("url")).open("admin", "admin");

    database.declareIntent(new OIntentMassiveInsert());
    database.begin(TXTYPE.NOTX);
  }
View Full Code Here

Examples of com.orientechnologies.orient.core.db.object.ODatabaseObjectTx

  @Parameters(value = "url")
  public IndexTest(String iURL) {
    Orient.instance().registerEngine(new OEngineRemote());

    database = new ODatabaseObjectTx(iURL);
    database.getEntityManager().registerEntityClasses("com.orientechnologies.orient.test.domain");
  }
View Full Code Here

Examples of com.orientechnologies.orient.core.db.object.ODatabaseObjectTx

    url = iURL;
  }

  @Test
  public void createAnnotatedObjects() {
    database = new ODatabaseObjectTx(url).open("admin", "admin");

    Country austria = new Country("Austria");
    City graz = new City(austria, "Graz");
    database.save(graz);
View Full Code Here

Examples of com.orientechnologies.orient.core.db.object.ODatabaseObjectTx

  @Test(dependsOnMethods = "testDeleteRollback")
  public void clean() {
    database.close();

    database = new ODatabaseObjectTx(url).open("admin", "admin");

    database.delete(profile);
    database.delete(account);

    database.close();
View Full Code Here

Examples of com.orientechnologies.orient.core.db.object.ODatabaseObjectTx

  private int                callbackCount  = 0;
  private Profile            p;

  @Parameters(value = "url")
  public HookTest(String iURL) {
    database = new ODatabaseObjectTx(iURL);
  }
View Full Code Here

Examples of com.orientechnologies.orient.core.db.object.ODatabaseObjectTx

  @Parameters(value = "url")
  public IndexTest(String iURL) {
    Orient.instance().registerEngine(new OEngineRemote());

    database = new ODatabaseObjectTx(iURL);
    database.getEntityManager().registerEntityClasses("com.orientechnologies.orient.test.domain");
  }
View Full Code Here

Examples of com.orientechnologies.orient.core.db.object.ODatabaseObjectTx

  @Parameters(value = "url")
  public IndexTest(String iURL) {
    Orient.instance().registerEngine(new OEngineRemote());

    database = new ODatabaseObjectTx(iURL);
    database.getEntityManager().registerEntityClasses("com.orientechnologies.orient.test.domain");
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.