python链接数据库pymysql
Posted lijinglj
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python链接数据库pymysql相关的知识,希望对你有一定的参考价值。
#python链接数据库pymysql
import pymysql config = {‘host‘ : ‘172.0.0.1‘, ‘user‘ : ‘lijing‘, ‘post‘ : ‘123456‘} #链接数据库 db = pymysql.connect(**config) #获取游标 cursor = db.cursor() try: #执行sql命令 sql = "create table if not exists 表名" cursor.execute(sql) #获取返回的结果一条 cursor.fetchone() #获取返回结果3条 cursor.fetchmany(3) #获取返回结果全部 cursor.fetchall() #提交到数据库执行 db.commit() except Exception as e: raise e #回滚 db.rollback() finally: #关闭游标 cursor.close() #关闭数据库链接 db.close()
以上是关于python链接数据库pymysql的主要内容,如果未能解决你的问题,请参考以下文章
Python - pymysql链接MySQL数据库并进行简单操作