百木园-与人分享,
就是让自己快乐。

Python-psycopg2的简单使用

一、简介

psycopg2 库是 python 用来操作 postgreSQL 数据库的第三方库。

 

二、安装

1.执行如下命令安装

pip3 install psycopg2

2.使用Pycharm安装

 

三、简单使用

1.我的数据库

 2.连接

import psycopg2

conn = psycopg2.connect(database=\"dastudiodb\", user=\"用户名\", password=\"密码\", host=\"172.xx.xx.xx\", port=\"54xx\")
cur = conn.cursor()
cur.execute(\"SELECT id from da.da_combine_model\")
rows = cur.fetchall()

for row in  rows:
    print(row)

3.运行结果

 

 

                                              to  be continued...


来源:https://www.cnblogs.com/TSmagic/p/15974759.html
本站部分图文来源于网络,如有侵权请联系删除。

未经允许不得转载:百木园 » Python-psycopg2的简单使用

相关推荐

  • 暂无文章