笔记 | 1. Python3 连接数据库 error 记录

这里是在不会写 Python3 的情况下使用 Python3 的菜鸟,请多多包涵,轻喷。

Python3 用的是 PyMySQL 驱动,代码如下【来自菜鸟教程】:

#!/usr/bin/python3

import pymysql

# 打开数据库连接: 地址,用户名,密码,数据库名称
db = pymysql.connect("IP地址保密", "用户名保密", "密码保密", "数据库名称保密")

# 使用 cursor() 方法创建一个游标对象 cursor
cursor = db.cursor()

# 使用 execute() 方法执行 SQL 查询
cursor.execute("SELECT VERSION()")

# 使用 fetchone() 方法获取单条数据
data = cursor.fetchone()

print("Database version : %s " % data)

# 关闭数据库连接
db.close()

一、No module named pymysql

出现的第一个报错是:
pymysql: no module named pymysql

首先在命令行中检查 pymysql 是否存在:pip3 install PyMySQL
命令行显示:Requirement already satisfied: PyMySQL in c:\users\admin\appdata\local\programs\python\python37\lib\site-packages (0.9.3)

pip3 显示 pymysql 存在

说明 pymysql 应该是已经存在的。

解决办法如下:

新建项目勾选 Inherit global site-packages 和 Make availiable to all projects
新建项目勾选 Inherit global site-packages 和 Make availiable to all projects。再次将代码复制一遍,即不再出现此 error

二、不能 run

发现上述代码不能直接运行。于是将核心代码复制到 PyCharm 提供的模板代码中。代码更新如下:

# This is a sample Python script.

# Press Shift+F10 to execute it or replace it with your code.
# Press Double Shift to search everywhere for classes, files, tool windows, actions, and settings.

import pymysql


# 函数与函数之间需要有两行空格
def print_hi(name):
    # Use a breakpoint in the code line below to debug your script.
    print(f'Hi, {name}')  # Press Ctrl+F8 to toggle the breakpoint.


def db_connect():
    # 打开数据库连接: 地址,用户名,密码,数据库名称
    db = pymysql.connect("IP地址保密", "用户名保密", "密码保密", "数据库名称保密")

    # 使用 cursor() 方法创建一个游标对象 cursor
    cursor = db.cursor()

    # 使用 execute() 方法执行 SQL 查询
    cursor.execute("SELECT VERSION()")

    # 使用 fetchone() 方法获取单条数据
    data = cursor.fetchone()

    print("Database version : %s " % data)

    # 关闭数据库连接
    db.close()


# Press the green button in the gutter to run the script.
if __name__ == '__main__':
    print_hi('PyCharm')
    db_connect()
    print_hi('PyCharm')
    

点击 if 左边绿色的三角形,即可运行成功。

运行结果

疑问:PyCharm 只能这样运行程序吗?

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值