本页面介绍了如何将 PostgreSQL psycopg3 驱动程序连接到 PostgreSQL 方言数据库
。psycopg3
是 PostgreSQL 的 Python 驱动程序。
确保 PGAdapter 与 使用 PostgreSQL psycopg3 驱动程序进行连接的应用。
如需了解详情,请参阅启动 PGAdapter。
在
psycopg3
连接属性中,将localhost
和5432
指定为数据库服务器主机和端口。- 可选:如果 PGAdapter 为 配置为在非默认 PostgreSQL 端口上进行监听 端口 (5432)。
- 可选:如果 PGAdapter 正在运行,请指定其他主机名 与本地机器位于不同主机上
connection = psycopg.connect(database="DATABASE_ID", host="localhost", port=5432) cursor = connection.cursor() cursor.execute('select \'Hello World\'') for row in cursor: print(row) cursor.close() connection.close()
后续步骤
- 详细了解 PGAdapter。
- 如需详细了解 PostgreSQL psycopg3 驱动程序连接选项,请参阅 psycopg3 连接选项 。