我在将Django与Orientdb PyOrient OGM连接时遇到困难。
我在Django的settings.py文件中设置了以下连接字符串和初始化方法。
# PYORIENT DB SETTINGS
DJANGORIENT_SETTINGS = {
'host': 'localhost',
'port': '2480',
'username': 'xxxx',
'password': 'xxxxxxxxxx',
'name': 'authdb'
}
from pyorient.ogm import declarative
Node = declarative.declarative_node()
Relationship = declarative.declarative_relationship()
但是我无法通过我的models.py文件连接到数据库
from pyorient.ogm.property import *
from .settings import Node
class Car(Node):
registration = String(unique=True)
colour = String()
关于如何将两种技术连接在一起的任何建议?