欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python怎么连接mysql数据库?

程序员文章站 2022-06-06 18:25:39
...

使用环境:Windows+python3.7+MySQL5.5+Navicat
1.准备工作安装:
pip install MySQLClient
2.使用mysql使用流程
开始->创建connection->获取cursor->执行查询/执行命令/获取数据/处理数据->关闭cursor->关闭connection->结束
3.创建方法导入(简单的mysql数据库建立连接就完成了,接下来就可以写对数据增删改查操作)


```python
import MySQLdb

conn=MySQLdb.connect(host='127.0.0.1',port=3306,user='root',passwd='root1234',db='test_auto_new',charset='utf8')

#创建并且返回游标

cursor=conn.cursor()

#查询表

cursor.execute("select * from auth_user");

results=cursor.fetchall()

for row in results:

    name=row

    print(name)

    #删除表

    id=6

    sql="delete from auth_user where id='%s'" %(id)

    try:

        #用于执行一个数据库的查询命令

        cursor.execute(sql);

        #提交

        conn.commit();

    except:

        #回滚当前事物

        conn.rollback();