【mysql数据库之python链接mysql】

# 使用之前请在命令行pip install pymysql
import pymysql

# 1.创建链接
conn = pymysql.connect(host=127.0.0.1,  # IP地址
                       port=3306,  # 端口号
                       database=database_name,  # 数据库名称
                       user=mysql_username,  # 数据库用户名
                       password=mysql_password,  # 数据库密码
                       charset=utf8)  # 编码

# 2.建立游标
cursor = conn.cursor()

# 3.执行sql语句
sql = 自己编写sql语句
cursor.execute(sql)

# 4.根据查询的情况选择(fetchone-查询一条/fetchall-查询所有)
cursor.fetchone()
# cursor.fetchall()

# 5.关闭游标
cursor.close()

# 6.关闭连接
conn.close()

 

【mysql数据库之python链接mysql】

上一篇:PHP漏洞之【整型数字型SQL注入】


下一篇:PDB的创建与删除