博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python操作数据库
阅读量:6687 次
发布时间:2019-06-25

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

转自:

udo apt-get install python-mysqldb

安装完成之后可以在Python解释器中测试一下

输入

Python代码
  1. import MySQLdb #注意大小写!!
import MySQLdb #注意大小写!!

如果不报错,就证明安装成功了,可能继续了

MySQLdb在Python中也就相当于JAVA中的MySQL的JDBC Driver,Python也有类似的数据接口规范Python DB API,MySQLdb就是Mysql的实现。操作也比较简单和其它平台或语言操作数据库一样,就是建立和数据库系统的连接,然后给数据库输入SQL,再 从数据库获取结果。

先写一个最简单的,创建一个数据库:

Python代码
  1. #!/usr/bin/env python
  2. #coding=utf-8
  3. ###################################
  4. # @author migle
  5. # @date 2010-01-17
  6. ##################################
  7. #MySQLdb 示例
  8. #
  9. ##################################
  10. import MySQLdb
  11. #建立和数据库系统的连接
  12. conn = MySQLdb.connect(host=’localhost’, user=’root’,passwd=’longforfreedom’)
  13. #获取操作游标
  14. cursor = conn.cursor()
  15. #执行SQL,创建一个数据库.
  16. cursor.execute(“”"create database python ”"”)
  17. #关闭连接,释放资源
  18. cursor.close();
#!/usr/bin/env python#coding=utf-8#################################### @author migle# @date 2010-01-17###################################MySQLdb 示例###################################import MySQLdb#建立和数据库系统的连接conn = MySQLdb.connect(host='localhost', user='root',passwd='longforfreedom')#获取操作游标cursor = conn.cursor()#执行SQL,创建一个数据库.cursor.execute("""create database python """)#关闭连接,释放资源cursor.close();

创建数据库,创建表,插入数据,插入多条数据

Python代码
  1. #!/usr/bin/env python
  2. #coding=utf-8
  3. ###################################
  4. # @author migle
  5. # @date 2010-01-17
  6. ##################################
  7. #MySQLdb 示例
  8. #
  9. ##################################
  10. import MySQLdb
  11. #建立和数据库系统的连接
  12. conn = MySQLdb.connect(host=’localhost’, user=’root’,passwd=’longforfreedom’)
  13. #获取操作游标
  14. cursor = conn.cursor()
  15. #执行SQL,创建一个数据库.
  16. cursor.execute(“”"create database if not exists python”"”)
  17. #选择数据库
  18. conn.select_db(‘python’);
  19. #执行SQL,创建一个数据表.
  20. cursor.execute(“”"create table test(id int, info varchar(100)) ”"”)
  21. value = [1,"inserted ?"];
  22. #插入一条记录
  23. cursor.execute(“insert into test values(%s,%s)”,value);
  24. values=[]
  25. #生成插入参数值
  26. for i in range(20):
  27. values.append((i,’Hello mysqldb, I am recoder ’ + str(i)))
  28. #插入多条记录
  29. cursor.executemany(“”"insert into test values(%s,%s) ”"”,values);
  30. #关闭连接,释放资源
  31. cursor.close();
#!/usr/bin/env python#coding=utf-8#################################### @author migle# @date 2010-01-17###################################MySQLdb 示例###################################import MySQLdb#建立和数据库系统的连接conn = MySQLdb.connect(host='localhost', user='root',passwd='longforfreedom')#获取操作游标cursor = conn.cursor()#执行SQL,创建一个数据库.cursor.execute("""create database if not exists python""")#选择数据库conn.select_db('python');#执行SQL,创建一个数据表.cursor.execute("""create table test(id int, info varchar(100)) """)value = [1,"inserted ?"];#插入一条记录cursor.execute("insert into test values(%s,%s)",value);values=[]#生成插入参数值for i in range(20):    values.append((i,'Hello mysqldb, I am recoder ' + str(i)))#插入多条记录cursor.executemany("""insert into test values(%s,%s) """,values);#关闭连接,释放资源cursor.close();

查询和插入的流程差不多,只是多了一个得到查询结果的步骤

Python代码
  1. #!/usr/bin/env python
  2. #coding=utf-8
  3. ######################################
  4. #
  5. # @author migle
  6. # @date 2010-01-17
  7. #
  8. ######################################
  9. #
  10. # MySQLdb 查询
  11. #
  12. #######################################
  13. import MySQLdb
  14. conn = MySQLdb.connect(host=’localhost’, user=’root’, passwd=’longforfreedom’,db=’python’)
  15. cursor = conn.cursor()
  16. count = cursor.execute(‘select * from test’)
  17. print ’总共有 %s 条记录’,count
  18. #获取一条记录,每条记录做为一个元组返回
  19. print ”只获取一条记录:”
  20. result = cursor.fetchone();
  21. print result
  22. #print ’ID: %s   info: %s’ % (result[0],result[1])
  23. print ’ID: %s   info: %s’ % result
  24. #获取5条记录,注意由于之前执行有了fetchone(),所以游标已经指到第二条记录了,也就是从第二条开始的所有记录
  25. print ”只获取5条记录:”
  26. results = cursor.fetchmany(5)
  27. for r in results:
  28. print r
  29. print ”获取所有结果:”
  30. #重置游标位置,0,为偏移量,mode=absolute | relative,默认为relative,
  31. cursor.scroll(0,mode=’absolute’)
  32. #获取所有结果
  33. results = cursor.fetchall()
  34. for r in results:
  35. print r
  36. conn.close()

转载于:https://www.cnblogs.com/bdwkyangyang/archive/2012/12/18/2823547.html

你可能感兴趣的文章
Android 滤镜效果和颜色通道过滤
查看>>
Ruby开发者已可通过Fog管理Microsoft Azure服务
查看>>
Visual Studio 2017 15.6发布
查看>>
如何迅速分析出系统CPU的瓶颈在哪里?
查看>>
逢宕机必谈起,多云是真火还是假热?
查看>>
Chrome和HTTPS:安全Web的征途
查看>>
天猫双十一这十年:从“人肉云计算”到“脉冲计算”经历了什么
查看>>
软件专家的对话模式(第一部分)
查看>>
敏捷世界里中层经理的角色
查看>>
chrome扩展调试:background.html如何调试?
查看>>
关于嵌入式安全性的6个要点
查看>>
1月18日云栖精选夜读 | Euler 今日问世!国内首个工业级的图深度学习开源框架,阿里妈妈造 ...
查看>>
4月云栖社区最新技术活动预告
查看>>
我的JAVA面试经验(3年左右工作经验)
查看>>
大数据开发学习路线,如何快速成为大数据工程师?
查看>>
脚本填报表的条件查询
查看>>
好程序员web前端分享js技巧和js中一些常见的陷阱
查看>>
从一个开发的角度看负载均衡和LVS
查看>>
Spring Boot(12)——使用MongoDB
查看>>
c++基础(上) 听课流水账
查看>>