OrientDB连接Python的过程

OrientDB连接Python的过程

  • 下载安装
  • Python连接

下载安装

进入官网:OrientDB社区版下载,下载所需要的版本。
安装之前需要安装Java。

Python连接

注意:现阶段Python不支持3.X版本,只支持2.X版本。
Pyorient:使用技巧:Pyorient使用方法

你仍然可能无法连接,如果报错:Server sent empty string。这时需要通过OGM来连接。

from pyorient.ogm import Graph, Config

config = Config.from_url('/localhost/mydb','root','root')
g = Graph(config, 'admin', 'admin')

g.client.command('') # 里面写命令即可

通过这种方式可以实现Python编辑OrientDB。
OGM封装了方法,有足够时间的话,可以看下Graph里面的源码,就知道为什么它可以成功连接。

查看Graph源码之后我们可以精简代码:

config = Config.from_url('/localhost/mydb', 'root', 'root')

client = pyorient.OrientDB(config.host, config.port, config.serialization_type)
client.connect(config.user, config.cred)
client.db_open('mydb', 'root', 'root')

client.command('') # 里面写命令即可

按照此思路可以将Config精简。

你可能感兴趣的:(数据库)