python连接PostgreSQL
时间: 2023-07-11 10:30:09 浏览: 97
python连接PostgreSQL数据库的过程详解
要连接 PostgreSQL 数据库,需要先安装 Python 的 psycopg2 库,它是 PostgreSQL 数据库的 Python 客户端驱动程序。
以下是连接 PostgreSQL 数据库的示例代码:
```python
import psycopg2
try:
conn = psycopg2.connect(
host="localhost",
database="mydb",
user="myuser",
password="mypassword"
)
print("Connected to database successfully")
except:
print("Unable to connect to the database")
```
在上面的代码中,我们使用了 `psycopg2.connect()` 方法来连接 PostgreSQL 数据库。我们需要提供数据库的主机名、数据库名称、用户名和密码。
如果连接成功,程序将打印 "Connected to database successfully"。否则,程序将打印 "Unable to connect to the database"。
阅读全文