我只是从neo4j数据库开始。我在Python中使用neomodel与neo4j连接。
为此,我创建了一个名为“ kat”的新数据库,并为其指定了密码-“ password”。
运行以下代码后,我可以在数据库中创建一个名为Jim的新人:
from neomodel import (config, StructuredNode, StringProperty, IntegerProperty,
UniqueIdProperty, RelationshipTo, RelationshipFrom)
config.DATABASE_URL = 'bolt://neo4j:password@localhost:7687'
class Country(StructuredNode):
code = StringProperty(unique_index=True, required=True)
inhabitant = RelationshipFrom('Person', 'IS_FROM')
class Person(StructuredNode):
uid = UniqueIdProperty()
name = StringProperty(unique_index=True)
age = IntegerProperty(index=True, default=0)
country = RelationshipTo(Country, 'IS_FROM')
jim = Person(name='Jim', age=3).save()
jim.age = 4
jim.save() # validation happens here
# jim.delete()
# jim.refresh() # reload properties from neo
print(jim.id) # neo4j internal id
我不明白的是,我在代码中的任何地方都没有提到数据库的名称,但是我仍然可以看到该节点是在数据库中创建的。谁能解释?我将其用作设置指南-https://neomodel.readthedocs.io/en/latest/getting_started.html
答案 0 :(得分:1)
在neo4j中只有一个活动数据库,并且该数据库在conf/neo4j.conf
文件中定义。
您可以创建更多数据库,但不能同时激活多个数据库。
如果需要,可以在conf/neo4j.conf
文件中更改活动数据库。
更改下面的行以指向新数据库。
dbms.active_database=graph.db