六狼论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

新浪微博账号登陆

只需一步,快速开始

搜索
查看: 25|回复: 0

MySQLdb基本用法

[复制链接]

升级  16%

20

主题

20

主题

20

主题

秀才

Rank: 2

积分
74
 楼主| 发表于 2013-1-15 02:41:09 | 显示全部楼层 |阅读模式
import os, sys, stringimport MySQLdb# 连接数据库 try:    conn = MySQLdb.connect(host='localhost',user='root',passwd='xxxx',db='test1')except Exception, e:    print e    sys.exit()# 获取cursor对象来进行操作cursor = conn.cursor()# 创建表sql = "create table if not exists test1(name varchar(128) primary key, age int(4))"cursor.execute(sql)# 插入数据sql = "insert into test1(name, age) values ('%s', %d)" % ("zhaowei", 23)try:    cursor.execute(sql)except Exception, e:    print esql = "insert into test1(name, age) values ('%s', %d)" % ("张三", 21)try:    cursor.execute(sql)except Exception, e:    print e# 插入多条sql = "insert into test1(name, age) values (%s, %s)" val = (("李四", 24), ("王五", 25), ("洪六", 26))try:    cursor.executemany(sql, val)except Exception, e:    print e#查询出数据sql = "select * from test1"cursor.execute(sql)alldata = cursor.fetchall()# 如果有数据返回,就循环输出, alldata是有个二维的列表if alldata:    for rec in alldata:        print rec[0], rec[1]cursor.close()conn.close()
您需要登录后才可以回帖 登录 | 立即注册 新浪微博账号登陆

本版积分规则

快速回复 返回顶部 返回列表