这里是在不会写 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 是否存在:pip3 install PyMySQL
命令行显示:Requirement already satisfied: PyMySQL in c:\users\admin\appdata\local\programs\python\python37\lib\site-packages (0.9.3)
说明 pymysql 应该是已经存在的。
解决办法如下:
新建项目勾选 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 只能这样运行程序吗?