免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1858 | 回复: 0
打印 上一主题 下一主题

python访问mysql [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-07-16 21:01 |只看该作者 |倒序浏览
Python访问MYSQL的使用
首先要开启mysql。这样才能访问。
1,下载访问MYSQL的python包:
http://sourceforge.net/projects/mysql-python/
2,安装,我用的windows下直接next。
3,访问:
a,建立一个MySQLdb的类实例。conn = MySQLdb.connect
(host="localhost",user="root",passwd="ss",db="mytable")返回连接对象。
host:Mysql主机
user:连接使用的用户名
passwd:连接使用的用户名密码
db:默认打开的数据库
b,获取数据库指针(当前指向数据库的指针)。cursor = conn.cursor()
c,获取数据库信息(select是mysql的命令)。执行cursor.execute('select * from tables')
d,获取一row。fetchone(),类似readline(),每次返回row的tuple
e,移动指针。相当于f.seek()。cursor.scroll(int, parm)。
int:移动的行数,整数;在相对模式下,正数向下移动,负值表示向上移动。
parm:移动的模式,默认是relative,相对模式;可接受absoulte,绝对模式。
f,修改数据:括号内为mysql的命令
cursor.execute("insert  into table (row1, row2) values ('111', '222')")
cursor.execute("update  table set   row1 = 'test'  where  row2 = 'row2' ")
cursor.execute("delete from  table  where row1 = 'row1' ")
有时候会这样写:
sql="insert into note (note_id,note_detail) values (%s,%s)"   
param=('600000',"aaaa")   
cursor.execute(sql,param)
g,修改确认:conn.commit()
h,访问完后,关闭
cursor.close()
conn.close()
类似于f.close()
上代码:

import MySQLdb
conn = MySQLdb.connect(host="localhost",user="root",passwd="123",db="test")
conn.select_db("test")
cursor = conn.cursor()
cursor.execute("select * from table1")    # print all table1
# cursor.execute("insert into shop values(1,'a')")    # insert row
# conn.commit()            # commit update
sd = cursor.fetchall()    # fetch the table1
print sd         
cursor.close()        # close
conn.close()


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/33851/showart_1998594.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP