编程语言
首页 > 编程语言> > Python-psycopg2的简单使用

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...

标签:rows,cur,Python,psycopg2,da,xx,简单,conn
来源: https://www.cnblogs.com/TSmagic/p/15974759.html