You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DjangoBlog-Maintenance-Anal.../DjangoBlog-master/test_db.py

14 lines
288 B

# test_db.py
import pymysql
pymysql.install_as_MySQLdb()
try:
import MySQLdb
print("✅ MySQLdb 导入成功!")
# 测试版本
from MySQLdb import version_info
print(f"✅ 版本信息: {version_info}")
except Exception as e:
print(f"❌ 错误: {e}")