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.运行结果

 

                                           

posted @ 2022-03-07 10:21  莲(LIT)  阅读(5565)  评论(0编辑  收藏  举报