博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python操作数据库
阅读量:6682 次
发布时间: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

你可能感兴趣的文章
Oracle12c 安装
查看>>
DX11之D3DXMatrixIdentity 函数
查看>>
四项重要标准 让金融机构评选合适的DDoS防护提供商
查看>>
子集生成
查看>>
mybatis 关联子查询 association
查看>>
MySQL大表优化方案
查看>>
文件 / I/O重定向 / 用户和用户组
查看>>
iOS开发的插件和工具
查看>>
IOS开发之----Category的使用
查看>>
设置UIButton,UITextFild边框圆角(上半边或下半边)
查看>>
Python __init__.py 文件使用
查看>>
Spring源码-IOC容器(五)-Bean的初始化
查看>>
zookeeper原理
查看>>
我的友情链接
查看>>
有监视哨的顺序查找
查看>>
微信小程序开发之表单验证(WxValidate使用)
查看>>
Oracle DataBase 各种版本资源路径汇总
查看>>
linux文件中的目录的理解
查看>>
openstack运维实战系列(十八)nova与ceph结合
查看>>
我的友情链接
查看>>