博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python连接Mysql数据库
阅读量:5017 次
发布时间:2019-06-12

本文共 1051 字,大约阅读时间需要 3 分钟。

最近对Python比较感兴趣

写了一个简单的Demo来连接一下MySQL数据库,实现了简单的增删改查询功能,但是乱码问题还未能解决,等抽时间把所有乱码问题整理一下在写一篇博客。

希望大家多多指点:

注意:

1,Python连接Mysql 数据库需要MysqlDb(MySQL-python-1.2.4b4.win32-py2.7.exe)这个是我用的,貌似不支持Python3.0的,我的Python用的2.7 的版本,MysqlDb下载好之后,直接点击会默认安装到Python的路径下(安装MySQLDb之前,MySQL也是要安装好的,mysqldb的作用就是相当于让Python能够连接到mysql中个人理解)

控制台运行截图如下:

#!/usr/bin/python

#encoding=utf-8 
import sys 
import MySQLdb  
reload(sys) 
sys.setdefaultencoding('utf-8') 
conn=MySQLdb.connect(host="localhost",user="root",passwd="root",db="ait",charset='utf8') 
cursor =conn.cursor()
#删除
sql1="delete from user"
f=cursor.execute(sql1)
if(f>0):
print 'delete success'
conn.commit()
#插入
sql2='insert into user (username,password) value (11,22)' 
f=cursor.execute(sql2)
if(f>0):
print 'insert success'
conn.commit()
#修改
sql3='update user set username=123,password=456' 
f=cursor.execute(sql3)
if(f>0):
print 'update success'
conn.commit()
#查询
sql4 ="select * from user "
cursor.execute(sql4) 
row=cursor.fetchone() 
print row
#关闭
cursor.close() 
conn.close()

转载于:https://www.cnblogs.com/cxsabc/p/10627718.html

你可能感兴趣的文章
layui导出表格
查看>>
Laravel 基于 Scout 配置实现 Elasticsearch
查看>>
安装laravel horizon进程管理
查看>>
laravel jobs 进程
查看>>
Laravel es7.3 paginate分页报错问题
查看>>
ES(ElasticSearch)分布式全文搜索引擎
查看>>
[六省联考2017]寿司餐厅(最小割)
查看>>
[NOIP校内集训]City(前缀和)
查看>>
[Vani有约会]雨天的尾巴
查看>>
[JSOI2008]魔兽地图DotR
查看>>
[NOIP校内模拟]9.21的总结
查看>>
[SHOI2008]堵塞的交通traffic
查看>>
[校内集训] 氵
查看>>
[网络流24题]汽车加油行驶问题(分层图)
查看>>
[APIO2015]巴邻旁之桥(二叉堆+中位数)
查看>>
[洛谷P1368]工艺
查看>>
[APIO2014]回文串
查看>>
[NOIP2012]疫情控制(贪心)
查看>>
[NOIP2016]蚯蚓(单调性乱搞)
查看>>
2019暑假图论总结
查看>>