python3 链接Mysql数据库

Posted feipeng8848

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3 链接Mysql数据库相关的知识,希望对你有一定的参考价值。

使用的是PyMySql组件

pip3 install PyMySQL

代码

#!/usr/bin/python3
import pymysql
 
# 打开数据库连接
conn = pymysql.connect (
    host=‘127.0.0.1‘,
    port=3306,
    user=‘root‘,
    password=‘12345‘,
    database=‘mysql‘,
    charset=‘utf8‘
)

cursor = conn.cursor(cursor=pymysql.cursors.DictCursor)  # 返回字典数据类型
 
# 定义将要执行的sql语句
# sql = ‘select user from user;‘
sql = "SELECT user FROM user"
# 拼接并执行sql语句
cursor.execute(sql)
 
try:
    cursor.execute(sql)
   # 获取所有记录列表
    results = cursor.fetchall()
    
    for x in results:
        print(x)
except:
    print ("Error: unable to fetch data")

cursor.close()
conn.close()

以上是关于python3 链接Mysql数据库的主要内容,如果未能解决你的问题,请参考以下文章

scrapy主动退出爬虫的代码片段(python3)

scrapy按顺序启动多个爬虫代码片段(python3)

linux中怎么查看mysql数据库版本

部分代码片段

微信小程序代码片段

Python3.x:使用PyMysql连接Mysql数据库