要使用Java訪問OrientDB數(shù)據(jù)庫,首先需要確保已經(jīng)安裝了OrientDB,并且啟動了數(shù)據(jù)庫服務器。
下面是一個簡單的Java代碼示例,演示了如何連接到OrientDB數(shù)據(jù)庫,并執(zhí)行一些基本的操作:
import com.orientechnologies.orient.client.remote.OServerAdmin;
import com.orientechnologies.orient.core.command.OCommandRequest;
import com.orientechnologies.orient.core.db.ODatabaseSession;
import com.orientechnologies.orient.core.db.OrientDB;
import com.orientechnologies.orient.core.record.OVertex;
public class OrientDBExample {
public static void main(String[] args) {
// 連接到OrientDB數(shù)據(jù)庫
OrientDB orientDB = new OrientDB("remote:localhost", OrientDBConfig.defaultConfig());
ODatabaseSession dbSession = orientDB.open("dbName", "username", "password");
try {
// 創(chuàng)建一個頂點類
dbSession.createVertexClass("Person");
// 創(chuàng)建一個頂點對象
OVertex person = dbSession.newVertex("Person");
person.setProperty("name", "John");
person.setProperty("age", 30);
person.save();
// 查詢頂點對象
OCommandRequest query = dbSession.command("SELECT FROM Person WHERE name = 'John'");
Iterable<OVertex> result = query.execute();
for (OVertex vertex : result) {
System.out.println("Name: " + vertex.getProperty("name") + ", Age: " + vertex.getProperty("age"));
}
} finally {
// 關閉數(shù)據(jù)庫連接
dbSession.close();
orientDB.close();
}
}
}
在上面的示例中,我們首先使用OrientDB的Java API連接到數(shù)據(jù)庫,并打開一個數(shù)據(jù)庫會話。然后,我們創(chuàng)建了一個名為"Person"的頂點類,并創(chuàng)建了一個名為"John"的頂點對象,并將其保存到數(shù)據(jù)庫中。
接下來,我們執(zhí)行了一個查詢來檢索名為"John"的頂點對象,并將結果輸出到控制臺。
最后,我們關閉了數(shù)據(jù)庫連接。