1

在 Pony ORM 上指定我的表时出现此错误。

  File "business.py", line 79, in <module>
    db.generate_mapping()
  File "<string>", line 2, in generate_mapping
  File "/home/ancinedev/.pyenv/versions/3.6.1/lib/python3.6/site-packages/pony/utils/utils.py", line 58, in cut_traceback
    return func(*args, **kwargs)
  File "/home/ancinedev/.pyenv/versions/3.6.1/lib/python3.6/site-packages/pony/orm/core.py", line 724, in generate_mapping
    entity._link_reverse_attrs_()
  File "/home/ancinedev/.pyenv/versions/3.6.1/lib/python3.6/site-packages/pony/orm/core.py", line 3511, in _link_reverse_attrs_
    throw(ERDiagramError, 'Inconsistent reverse attributes %s and %s' % (attr, attr2))
  File "/home/ancinedev/.pyenv/versions/3.6.1/lib/python3.6/site-packages/pony/utils/utils.py", line 96, in throw
    raise exc
pony.orm.core.ERDiagramError: Inconsistent reverse attributes Pais.pessoas and Pessoa.identificador

我的 Pessoa 表有一个名为 CD_PAIS 的属性,该属性是对 Pais 表的引用,它被设置为主键。

class Pais(db.Entity):
    _table_ = ['SAD', 'TA_PAIS']
    codigo = PrimaryKey(int, column="CD_PAIS")
    nome = Required(str, column="NM_PAIS")
    pessoas = Set(lambda: Pessoa, reverse="identificador")

class Pessoa(db.Entity):
    _table_ = ['SAD', 'TB_PESSOA']
    identificador = PrimaryKey(int, column="ID_PESSOA")
    nome = Required(str, column="NM_PESSOA")
    tipo_pessoa = Required(str, column="IN_TIPO_PESSOA")
    numero_registro = Optional(str, column="NR_REGISTRO")
    pais = Required(Pais, reverse="codigo")

我尝试了许多文档和方法,但没有成功。

感谢大家的时间。

4

2 回答 2

1

您的代码片段的问题是您错误地将reverse属性指向另一个实体的主键。首先,反向属性应该是另一个实体的关系属性,而不是它的主键。所以对于实体中的pessoas属性,Pais它应该是实体中的pais属性Pessoa

class Pais(db.Entity):
    _table_ = ['SAD', 'TA_PAIS']
    codigo = PrimaryKey(int, column="CD_PAIS")
    nome = Required(str, column="NM_PAIS")
    pessoas = Set(lambda: Pessoa, reverse="pais")

class Pessoa(db.Entity):
    _table_ = ['SAD', 'TB_PESSOA']
    identificador = PrimaryKey(int, column="ID_PESSOA")
    nome = Required(str, column="NM_PESSOA")
    tipo_pessoa = Required(str, column="IN_TIPO_PESSOA")
    numero_registro = Optional(str, column="NR_REGISTRO")
    pais = Required(Pais, reverse="pessoas")

但是在这个例子中指定reverse属性不是必须的,因为 Pony 可以自己找出关系属性。仅当reverse实体之间存在多个关系并且无法自动建立关系时才需要指定。

如果您reverse从实体声明中删除 ,它将正常工作:

class Pais(db.Entity):
    _table_ = ['SAD', 'TA_PAIS']
    codigo = PrimaryKey(int, column="CD_PAIS")
    nome = Required(str, column="NM_PAIS")
    pessoas = Set(lambda: Pessoa)

class Pessoa(db.Entity):
    _table_ = ['SAD', 'TB_PESSOA']
    identificador = PrimaryKey(int, column="ID_PESSOA")
    nome = Required(str, column="NM_PESSOA")
    tipo_pessoa = Required(str, column="IN_TIPO_PESSOA")
    numero_registro = Optional(str, column="NR_REGISTRO")
    pais = Required(Pais)

在这里您可以找到有关实体关系的更多信息:https ://docs.ponyorm.com/relationships.html

此外,您可能还想使用在线实体关系图编辑器https://editor.ponyorm.com/。它可以帮助您为您的应用程序进行数据建模。

于 2017-07-18T15:32:37.947 回答
0

问题是何时生成 SQL。

File "/home/dev/.pyenv/versions/3.6.1/lib/python3.6/site-packages/pony/orm/dbapiprovider.py", line 55, in wrap_dbapi_exceptions
    except dbapi_module.DatabaseError as e: raise DatabaseError(e)
pony.orm.dbapiprovider.DatabaseError: ORA-00904: "TB_PESSOA"."PAIS": invalid identifier

SELECT "TB_PESSOA"."ID_PESSOA", "TB_PESSOA"."NM_PESSOA", "TB_PESSOA"."IN_TIPO_PESSOA", "TB_PESSOA"."NR_REGISTRO", "TB_PESSOA"."PAIS"
FROM "SAD"."TB_PESSOA" "TB_PESSOA"
WHERE 0 = 1

PAIS 实际上在 TB_PESSOA 中并不存在,它是一个名为 CD_PAIS 的字段,它是 TA_PAIS 的外键。

于 2017-07-19T13:50:45.060 回答