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.
18 lines
365 B
18 lines
365 B
import pymysql
|
|
import xlrd
|
|
|
|
"""
|
|
一、连接mysql数据库
|
|
"""
|
|
# 打开数据库连接
|
|
conn = pymysql.connect(
|
|
host='8.135.8.221', # MySQL服务器地址
|
|
user='root', # 用户名
|
|
password='qniaothreetwoonego', # 密码
|
|
charset='utf8',
|
|
port=3306, # 端口
|
|
database='dating-agency-service', # 数据库名称
|
|
)
|
|
|
|
#断开连接
|
|
conn.close()
|