使用Psycopg2连接openGauss 3.0(python2)
要使用Psycopg2连接openGauss 3.0,你需要确保你的环境中安装了Psycopg2,并且你需要使用openGauss 3.0的正确连接字符串。
以下是一个简单的Python代码示例,展示了如何使用Psycopg2连接openGauss 3.0数据库:
# 导入Psycopg2模块
import psycopg2
# 定义openGauss 3.0的连接字符串
# 格式通常是: "dbname=数据库名 user=用户名 host=主机地址 port=端口号 password=密码"
conn_string = "dbname=your_db name user=your_username host=your_host_address port=your_port password=your_password"
# 尝试连接到openGauss 3.0数据库
try:
# 连接到数据库
conn = psycopg2.connect(conn_string)
# 创建一个游标对象
cursor = conn.cursor()
# 编写SQL查询
cursor.execute('SELECT version();')
# 获取查询结果
db_version = cursor.fetchone()
# 打印结果
print("openGauss version:", db_version)
# 关闭游标
cursor.close()
# 关闭连接
conn.close()
# 捕获异常并打印错误信息
except psycopg2.Error as e:
print("Unable to connect to the database:", e)
请确保将conn_string
中的your_db_name
, your_username
, your_host_address
, your_port
, 和 your_password
替换为你的openGauss 3.0数据库的实际连接信息。
如果你正在使用Python 2,请注意Psycopg2可能不支持Python 2。你可能需要使用Psycopg2-binary或者将Python升级到Python 3。
评论已关闭