Python访问MySQL数据库
利用Python从MySQL中读取数据需要以下3步。1、连接MySQL数据库import pymysql#与数据库建立连接conn=pymysql.connect(host="127.0.0.1", ...
2024.11.22版本:python3.8
安装连接包windows环境环境:windows10
https://blog.csdn.net/weixin_43570254/article/details/103101823~~
python -m pip install mysql-connector
参考教程:
https://www.runoob.com/python3/python3-mysql.html
连接及操作from constant import constimport pymysqldevdbcfg = const.DB_DEV_BASEhost = devdbcfg.get(‘host‘)port = devdbcfg.get(‘port‘)user = devdbcfg.get(‘user‘)password = devdbcfg.get(‘passwd‘)config ={"host": host,"port": port,"user": user,"password": password}connection = pymysql.connect(**config)cursor = connection.cursor()# 获取列表query_sql = "select * from tmp_table5 limit 10"cursor.execute(query_sql)data =cursor.fetchall()print(data)insert_sql= "insert INTO tmp_table3 (tmp1) VALUES (‘帅死了‘)"cursor.execute(insert_sql)# 增、删、改的时候,必须要进行提交,否则插入的数据不生效。connection.commit()# 在execute提供插入的数据 -> 可防止sql注入insert_sql_template = "insert INTO tmp_table3 (tmp1) VALUES (%s)"cursor.execute(insert_sql_template,("你太帅了,没错"))# 自增的主键,可以使用lastrowid来获取最后一次自增的IDprint("the last rowid is ",cursor.lastrowid)connection.commit()#提交数据cursor.close()# 关闭连接connection.close()利用Python从MySQL中读取数据需要以下3步。1、连接MySQL数据库import pymysql#与数据库建立连接conn=pymysql.connect(host="127.0.0.1", ...
2024.11.22方法一、直接通过MySQL的驱动加载数据库示例代码:(1)在.pro文件中添加下列代码:QT +=sql(2)在mainwindow.h文件中添加下列头文件:#include(3)在main.cpp文...
2024.11.22作者 | CDA数据分析师来源 | CDA数据分析研究院本文涉及到的开发环境:操作系统 Windows 10数据库 MySQL 8.0Python 3.7.2 pip 19.0.3两种方法进行数据库的...
2024.11.22数据分析离不开数据库,如何使用python连接数据库呢?听我娓娓道来哈该笔记参考了PyMySQL官方文档和《python数据采集》关于数据存储的部分,欢迎大家去阅读原著,相信会理解的更加透彻。补充:文...
2024.11.21欢迎来到数据科学探索,数据科学家是目前最稀缺的工作岗位之一,成为一名数据科学家就意味着站在了互联网岗位鄙视链的顶端。欢迎关注数据科学探索,这里有大量关于数据分析、数据挖掘、机器学习、爬虫、可视化以及量...
2024.11.23