Python的OrientDB驅動程式使用二進位制協定。 PyOrient是git hub專案名稱,它用於將OrientDB與Python連線起來並運算元據。 它適用於OrientDB 1.7及更高版本。
以下命令用於安裝PyOrient
。
pip install pyorient
可以使用名為demo.py
的指令碼檔案執行以下任務 -
DB_Demo
的資料庫。DB_Demo
的資料庫。my_class
。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