OrientDB - ส่วนต่อประสาน Python
ไดรเวอร์ OrientDB สำหรับ Python ใช้ไบนารีโปรโตคอล PyOrient เป็นชื่อโปรเจ็กต์ git hub ซึ่งช่วยในการเชื่อมต่อ OrientDB กับ Python ใช้งานได้กับ OrientDB เวอร์ชัน 1.7 และใหม่กว่า
คำสั่งต่อไปนี้ใช้เพื่อติดตั้ง PyOrient
pip install pyorient
คุณสามารถใช้ไฟล์สคริปต์ชื่อ demo.py เพื่อทำงานต่อไปนี้ -
สร้างอินสแตนซ์ไคลเอนต์หมายถึงสร้างการเชื่อมต่อ
สร้าง DB ชื่อ DB_Demo.
เปิด DB ชื่อ DB_Demo
สร้างคลาส 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