Python3 MySQL

Posted

tags:

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

首先安装pymysql  pip install pymysql

技术分享

准备数据库:创建一个数据库testdb

mysql实例:

import pymysql

#打开数据库连接,使用数据库所在的IP127.0.0.1,数据库的用户名和密码,要操作的数据库testdb
db=pymysql.connect(127.0.0.1,root,‘‘,testdb)

#使用cursor()创建一个游标对象
cursor=db.cursor()

#使用 execute() 方法执行 SQL,如果表存在则删除
cursor.execute(drop table if exists user;)

#创建表的SQL语句
sql=‘‘‘create table user (
            id int(10) primary key,
            user varchar(20)
            );
        ‘‘‘

#执行sql语句
cursor.execute(sql)

#插入数据的SQL语句
sql1="insert into user values(1,tangqiu);"

try:
  #执行SQL语句
    cursor.execute(sql1)
    db.commit()
except :
  #发生错误时回滚
    db.rollback()
#查询的SQL语句 sql2=select * from user; #执行SQL语句 cursor.execute(sql2) # 获取所有记录列表 result=cursor.fetchall() print(result) db.close()

 







以上是关于Python3 MySQL的主要内容,如果未能解决你的问题,请参考以下文章

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

python常用代码片段总结

部分代码片段

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

学习 PyQt5。在我的代码片段中找不到错误 [关闭]

从mysql的片段中加载ListView