如何在列名(和表名)中有空格的数据库上使用 sqlalchemy?
db.auth_stuff.filter("db.auth_stuff.first name"=='Joe')
显然不能工作。而不是在进行反射时手动定义所有内容,我想在lambda x: x.replace(' ','_')
从数据库读取的现有表名和在我的模型中使用的表名之间放置类似的东西。(创建一个通用函数来重命名所有不适用于python的表名也可能很有用 - 保留字等)
有没有一种简单/干净的方法来做到这一点?
我想我需要定义自己的映射器类?
https://groups.google.com/forum/#!msg/sqlalchemy/pE1ZfBlq56w/ErPcn1YYSJgJ
或使用某种__mapper_args__
参数 -
http://docs.sqlalchemy.org/en/rel_0_8/orm/mapper_config.html#naming-all-columns-with-a-prefix
理想情况下:
class NewBase(Base):
__mapper_args__ = {
'column_rename_function' : lambda x: x.replace(' ','_')
}
class User(NewBase):
__table__ = "user table"
}