AttributeError while querying: Neither 'InstrumentedAttribute' object nor 'Comparator' has an attribute

前端 未结 4 1342
旧巷少年郎
旧巷少年郎 2021-01-31 14:33

The following code:

Base = declarative_base()
engine = create_engine(r\"sqlite:///\" + r\"d:\\foo.db\",
                       listeners=[ForeignKeysListener()])         


        
4条回答
  •  北恋
    北恋 (楼主)
    2021-01-31 14:42

    This is because you are trying to access bar from the FooBar class rather than a FooBar instance. The FooBar class does not have any bar objects associated with it--bar is just an sqlalchemy InstrumentedAttribute. This is why you get the error:

    AttributeError: Neither 'InstrumentedAttribute' object nor 'Comparator' object associated with FooBar.bar has an attribute 'foo'
    

    You will get the same error by typing FooBar.bar.foo.name outside the sqlalchemy query.

    The solution is to call the Foo class directly:

    ses.query(FooBar).join(Bar).join(Foo).filter(Foo.name == "blah")
    

提交回复
热议问题