码迷,mamicode.com
首页 > 数据库 > 详细

python操作Mysql数据库

时间:2014-12-08 12:17:46      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   sp   for   on   数据   div   

代码:

import MySQLdb

conn=MySQLdb.connect(host=127.0.0.1, user=root, passwd=root, db=test, port=3306)
cur=conn.cursor()
row = cur.execute(select * from stu)
# print affectRow
result = cur.fetchmany(row)
for line in result:
    print line

cur.close()
conn.close()

简单讲解其中用到的函数

MySQLdb.connect() 方法是连接数据库

conn.cursor() 方法是获取游标

cur.execute() 方法是执行sql语句,返回结果集行数

cur.fetchmany() 方法是从结果集中获取结果,参数执行获取的行数,返回值为获取结果

 

python操作Mysql数据库

标签:style   blog   color   os   sp   for   on   数据   div   

原文地址:http://www.cnblogs.com/lit10050528/p/4150690.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!