PyQt5连接OpenGauss数据库

环境准备

1.成功安装opengauss数据库

2.成功安装python环境

3.成功安装PyQt5

4.成功安装pycharm (社区版即可)

安装步骤

python连接opengauss数据库,可以使用python提供的一个模块psycopg

1.安装psycopg2

psycopg可以整合python和postgres数据库。

方法一:使用命令行进行安装:(为防止网络问题后面添加了国内镜像)

pip3 install psycopg2 -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com

成功安装显示如下: 

方法二:直接在pycharm中进行安装

打开pycharm,点击file-settings

PyQt5连接OpenGauss数据库_第1张图片 

点击project:fileprocess-Python Interpreter-+

PyQt5连接OpenGauss数据库_第2张图片

 输入psycopg,点击install package

PyQt5连接OpenGauss数据库_第3张图片

2.安装database Navigator

由于我的pycharm是社区版,所以需要手动安装database navigator

打开pycharm,点击file-settings

PyQt5连接OpenGauss数据库_第4张图片

 点击Plugins-database-installed

PyQt5连接OpenGauss数据库_第5张图片

 安装成功后重启pycharm可以看到在菜单栏上多了一个标签DB Navigator

 3.连接数据库

在左侧菜单栏找到DB Browser,然后点击左上角+

PyQt5连接OpenGauss数据库_第6张图片

选择PostgreSQL

 PyQt5连接OpenGauss数据库_第7张图片

 依次填写如下信息 PyQt5连接OpenGauss数据库_第8张图片

点击test connection之后,出现如下内容表明连接成功

PyQt5连接OpenGauss数据库_第9张图片

 点击应用apply

PyQt5连接OpenGauss数据库_第10张图片

 

 

 

你可能感兴趣的:(PyQt,高斯数据库openGauss,数据库连接,pycharm,pyqt5,数据库)