//database = new OGraphDatabase(System.getProperty("url")).create();
record = database.newInstance();
database.declareIntent(new OIntentMassiveInsert());
OClass cl = database.createVertexType("Person", "OGraphVertex");
cl.createProperty("id", OType.LONG);
cl.createProperty("name", OType.STRING);
cl.createProperty("surname", OType.STRING);
cl.createProperty("birthDate", OType.DATE);