python连接postgres方法

Posted 道法自然

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python连接postgres方法相关的知识,希望对你有一定的参考价值。

Python使用PyGreSQL操作PostgreSQL:

import pg

def operate_postgre_tbl_product():
    try:
        #db = pg.connect(dbname = ‘postgres‘, host = ‘192.168.1.200‘, user = ‘postgres‘, passwd = ‘postgres‘)      方法一
        db = pg.connect("host=192.168.1.200 port=5432 dbname=postgres user=postgres")                              方法二

    except Exception as  e:
         print (e.args[0])
         return


    sql_desc = "select * from zhang;"
    for row in db.query(sql_desc).dictresult():
        print (row)


    db.close()


if __name__ == __main__:
    operate_postgre_tbl_product()

PostgreSQL可以使用psycopg2模块与Python集成。sycopg2是用于Python编程语言的PostgreSQL数据库适配器。 psycopg2是非常小,快速,稳定的。

## 导入psycopg2包
import psycopg2
## 连接到一个给定的数据库
conn = psycopg2.connect(database="postgres", user="postgres",password="postgres", host="192.168.1.200", port="5432")
## 建立游标,用来执行数据库操作
cursor = conn.cursor()

## 执行SQL命令
cursor.execute("CREATE TABLE test_conn(id int, name text)")
cursor.execute("INSERT INTO test_conn values(1,‘haha‘)")

## 提交SQL命令
conn.commit()

## 执行SQL SELECT命令
cursor.execute("select * from test_conn")

## 获取SELECT返回的元组
rows = cursor.fetchall()
for row in rows:
    print(id = ,row[0], name = , row[1], 
)

## 关闭游标
cursor.close()

## 关闭数据库连接
conn.close()

十年饮冰,难凉热血。

以上是关于python连接postgres方法的主要内容,如果未能解决你的问题,请参考以下文章

postgres之使用python连接并操作

终止 postgres 复制模式连接的正确方法

来自python的pg8000 postgres连接问题

常用python日期日志获取内容循环的代码片段

Psycopg2 在 postgres 数据库中插入 python 字典

postgres linux系统下连接方法