在SQLAlchemy中查询混合属性

10

我在数据库中将文件路径存储为相对路径,但随后使用混合属性将其转换为绝对路径进行映射。当我使用此属性查询时,会出现错误。以下是模型:

class File(Base):
    __tablename__ = 'files'
    ...

    _f_path = Column(Unicode(30))

    ...

    @hybrid_property
    def f_path(self):
        env = shelve.open('environment')
        return os.path.join(env['project_dir'], self._f_path)

    @f_path.setter
    def f_path(self, _f_path):
        self._f_path = _f_path

当我运行此查询(其中ref是Unicode字符串):

session.query(File).filter_by(f_path=ref).first()

它给了我这个错误:

File "/Users/Ben/Dropbox/Giraffe/giraffe_server/giraffe/file_handlers/maya.py", line 135, in process_file
    rf = session.query(File).filter_by(f_path=str(ref)).first()
  File "build/bdist.macosx-10.7-intel/egg/sqlalchemy/orm/query.py", line 1211, in filter_by
    for key, value in kwargs.iteritems()]
  File "build/bdist.macosx-10.7-intel/egg/sqlalchemy/orm/util.py", line 597, in _entity_descriptor
    return getattr(entity, key)
  File "build/bdist.macosx-10.7-intel/egg/sqlalchemy/ext/hybrid.py", line 681, in __get__
    return self.expr(owner)
  File "/Users/Ben/Dropbox/Giraffe/giraffe_server/giraffe/model.py", line 133, in f_path
    print "\n\n\n[model.py:File@f_path hybrid_property] returning: ", os.path.join(env['project_dir'], self._f_path)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/posixpath.py", line 66, in join
    if b.startswith('/'):
  File "build/bdist.macosx-10.7-intel/egg/sqlalchemy/sql/expression.py", line 3426, in __nonzero__
    raise TypeError("Boolean value of this clause is not defined")
TypeError: Boolean value of this clause is not defined
1个回答

15

您的混合属性必须返回SQL表达式;而您的代码没有这样做,它返回了一个Python字符串。

为了解决这个问题,不要在Python中进行路径拼接,而是在SQL表达式中进行拼接:

return env['project_dir'] + os.path.sep + self._f_path

这将解析为self._f_path.__radd__(result_of_project_dir_plus_os_path_sep),可以在查询中使用并作为返回值。


太好了。在SQLAlchemy和SQL方面,我还有很多需要学习的地方。非常感谢。 - Ben Davis

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接