centos python连接postgre数据库
时间: 2023-06-30 15:15:40 浏览: 190
python连接PostgreSQL数据库的过程详解
你可以按照以下步骤连接PostgreSQL数据库:
1. 安装依赖库:
```
yum install python-devel postgresql-devel
```
2. 安装 psycopg2 库:
```
pip install psycopg2
```
3. 连接数据库:
```python
import psycopg2
conn = psycopg2.connect(database="your_database_name", user="your_username", password="your_password", host="your_host", port="your_port")
```
其中,`your_database_name` 是你要连接的数据库名称,`your_username` 和 `your_password` 是数据库的用户名和密码,`your_host` 是数据库所在的主机地址,`your_port` 是数据库的端口号(一般默认为 5432)。
4. 执行 SQL 语句:
```python
cur = conn.cursor()
cur.execute("SELECT * FROM your_table_name")
rows = cur.fetchall()
for row in rows:
print(row)
```
其中,`your_table_name` 是你要查询的表名,`cur.fetchall()` 可以获取所有查询结果。
5. 关闭数据库连接:
```python
conn.close()
```
记得在操作完数据库后要及时关闭数据库连接,以免造成资源占用。
阅读全文