Python MySQLdb模块

本文将介绍如何使用Python连接并操作MySQL数据库,包括创建表、插入数据、查询数据等基本操作,帮助开发者掌握数据库管理技能。

 

  1. #-*- encoding: gb2312 -*- 
  2. import os, sys, string 
  3. import MySQLdb 
  4.  
  5. # 连接数据库  
  6. try: 
  7.     conn = MySQLdb.connect(host='localhost',user='root',passwd='xxxx',db='test1') 
  8. except Exception, e: 
  9.     print e 
  10.     sys.exit() 
  11.  
  12. # 获取cursor对象来进行操作 
  13.  
  14. cursor = conn.cursor() 
  15. # 创建表 
  16. sql = "create table if not exists test1(name varchar(128) primary key, age int(4))" 
  17. cursor.execute(sql) 
  18. # 插入数据 
  19. sql = "insert into test1(name, age) values ('%s', %d)" % ("zhaowei", 23) 
  20. try: 
  21.     cursor.execute(sql) 
  22. except Exception, e: 
  23.     print e 
  24.  
  25. sql = "insert into test1(name, age) values ('%s', %d)" % ("张三", 21) 
  26. try: 
  27.     cursor.execute(sql) 
  28. except Exception, e: 
  29.     print e 
  30. # 插入多条 
  31.  
  32. sql = "insert into test1(name, age) values (%s, %s)"  
  33. val = (("李四", 24), ("王五", 25), ("洪六", 26)) 
  34. try: 
  35.     cursor.executemany(sql, val) 
  36. except Exception, e: 
  37.     print e 
  38.  
  39. #查询出数据 
  40. sql = "select * from test1" 
  41. cursor.execute(sql) 
  42. alldata = cursor.fetchall() 
  43. # 如果有数据返回,就循环输出, alldata是有个二维的列表 
  44. if alldata: 
  45.     for rec in alldata: 
  46.         print rec[0], rec[1] 
  47.  
  48.  
  49. cursor.close() 
  50.  
  51. conn.close() 

转载于:https://www.cnblogs.com/L-H-R-X-hehe/p/3828921.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值