1

我刚开始使用 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

4

1 回答 1

1

neo4j中只有一个数据库处于活动状态,它在conf/neo4j.conf文件中定义。

您可以创建更多数据库,但不能同时激活多个数据库。

如果需要,您可以更改conf/neo4j.conf文件中的活动数据库。

更改以下行以指向新数据库。

dbms.active_database=graph.db
于 2019-02-15T09:20:03.657 回答