OrientDB Python連線操作


Python的OrientDB驅動程式使用二進位制協定。 PyOrient是git hub專案名稱,它用於將OrientDB與Python連線起來並運算元據。 它適用於OrientDB 1.7及更高版本。

以下命令用於安裝PyOrient

pip install pyorient

可以使用名為demo.py的指令碼檔案執行以下任務 -

  • 建立用戶端範例,也就是建立一個連線。
  • 建立名為DB_Demo的資料庫。
  • 開啟名為DB_Demo的資料庫。
  • 建立類my_class
  • 建立屬性ID和名稱。
  • 將記錄插入類my_class

參考以下程式碼實現 -

//create connection 
client = pyorient.OrientDB("localhost", 2424) 
session_id = client.connect( "admin", "admin" )

//create a databse 
client.db_create( db_name, pyorient.DB_TYPE_GRAPH, pyorient.STORAGE_TYPE_MEMORY ) 

//open databse 
client.db_open( DB_Demo, "admin", "admin" ) 

//create class 
cluster_id = client.command( "create class my_class extends V" ) 

//create property 
cluster_id = client.command( "create property my_class.id Integer" ) 
cluster_id = client.command( "create property my_class.name String" ) 

//insert record 
client.command("insert into my_class ( 'id','’name' ) values( 1201, 'satish')")

使用以下命令執行上述指令碼。

$ python demo.py