清水论坛
Would you like to react to this message? Create an account in a few clicks or log in to continue.
清水论坛

不三不四的清水论坛


您没有登录。 请登录注册

分享python链接mysql的代码

向下  留言 [第1页/共1页]

Admin


Admin

分享python链接mysql的代码
© laowang/ 2011-3-22 / 16:52

前几天我用python操作了mysql的数据库,发现非常的有趣,而且python操作mysql的方法非常的简单和快速,所以我把代码分享下大家,希望对大家学习有帮助。

import sys
import MySQLdb

reload(sys)
sys.setdefaultencoding('utf-8')

def getdata ():
try:
conn = MySQLdb.connect(host='localhost', user='root', passwd='root', db='test', port=3306, charset='utf8')
try:
cur = conn.cursor()
sql = r'select * from person'
cur.execute(sql)
allPerson = cur.fetchall()
finally:
cur.close()
conn.close()
except Exception, e:
print '数据库错误:', e
return

for rec in allPerson:
print rec[0],rec[1]

if __name__ == '__main__':
getdata()

http://bu3bu4.8008cn.net

返回页首  留言 [第1页/共1页]

您在这个论坛的权限:
不能在这个论坛回复主题