如何使用python3和postgres连接到特定的squema?

时间:2018-11-05 21:08:29

标签: python python-3.x postgresql

我想使用psycopg2连接到特定队列中的postgres数据库。我读过此thread,但收到语法错误。

schema = conf['schema']
conn = psycopg2.connect(
    dbname=conf['database'],
    user=conf['user'],
    host=conf['host'],
    password=conf['passw'],
    port=conf['port'],
    options=f'-c search_path={schema}',
)

我检查了获取数据的config.json。

谢谢

0 个答案:

没有答案