OrientDB-Pythonインターフェース
Python用のOrientDBドライバーは、バイナリプロトコルを使用します。PyOrientは、OrientDBをPythonに接続するのに役立つgitハブプロジェクト名です。OrientDBバージョン1.7以降で動作します。
次のコマンドを使用して、PyOrientをインストールします。
pip install pyorient
次の名前のスクリプトファイルを使用できます demo.py 次のタスクを実行するには-
クライアントインスタンスを作成するということは、接続を作成することを意味します。
名前の付いたDBを作成します DB_Demo。
DB_Demoという名前のDBを開きます。
クラスmy_classを作成します。
プロパティIDと名前を作成します。
クラスにレコードを挿入します。
//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