标签:sqlalchemy 多个数据库 多数据源 数据库 db sqlalchemy_binds
databases.py app.config[‘SQLALCHEMY_DATABASE_URI‘] = globalsSet[‘dblink‘]#默认数据库链接 app.config[‘SQLALCHEMY_BINDS‘] = {‘one‘ : globalsSet[‘dblink_one‘], ‘two‘:globalsSet[‘dblink_two‘]} models.py __tablename__ = ‘tname‘ __bind_key__ = ‘one‘
问题:
去重使用group by,不能使用distinct写法“db_session.query(表名.ip).distinct()” 由于使用了多数据源,db_session.query(表名)只能写表名,因为models中__bind_key__控制,暂未找到好方法先使用group_by去重 所以查表的方式目前我只是用query(表名)的方式,还未找到很好的解决方式,如果写表名.字段,则使用默认数据库链接
本文出自 “智能化未来_XFICC” 博客,请务必保留此出处http://xficc.blog.51cto.com/1189288/1672887
标签:sqlalchemy 多个数据库 多数据源 数据库 db sqlalchemy_binds
原文地址:http://xficc.blog.51cto.com/1189288/1672887