psycopg2.connect()
功能描述
此方法创建新的数据库会话并返回新的connection对象。
原型
conn=psycopg2.connect(dbname="test",user="postgres",password="secret",host="127.0.0.1",port="5432")
参数
表 1 psycopg2.connect参数
返回值
connection对象(连接openGauss数据库实例的对象)。
示例
请参见示例:常用操作。
意见反馈
此方法创建新的数据库会话并返回新的connection对象。
conn=psycopg2.connect(dbname="test",user="postgres",password="secret",host="127.0.0.1",port="5432")
表 1 psycopg2.connect参数
connection对象(连接openGauss数据库实例的对象)。
请参见示例:常用操作。