我知道可以为登录的db角色设置search_path
,但是有没有办法在URI级别指定架构或实现此目的的方法?由于我的PostgreSQL经验仅和JDBC driver在一起,我可能会误会。
我当前的URI失败:
postgresql://app_user:pw@localhost/dev_db?currentSchema=app
psycopg2
抱怨currentSchema
是无效的选项
sqlalchemy.exc.ProgrammingError: (psycopg2.ProgrammingError) invalid dsn: invalid connection option "currentSchema"
(Background on this error at: http://sqlalche.me/e/f405)