__MagicPower
Do one thing and do it best!

导航

 
#!/usr/bin/env python
#--*-- coding:utf-8 --*--
__author__ = 'Kevin'

import MySQLdb as mdb
import sys

con = mdb.connect('localhost','root','redhat','test')

try:
    with con:
        cur = con.cursor(mdb.cursors.DictCursor)
        cur.execute("SELECT * FROM Writers")

        rows = cur.fetchall()

        for row in rows:
            print "%s %s" % (row["Id"],row["Name"])
finally:
    con.close()

 

Result:

1 Jack London
2 Tik Tok
3 Harry Potter

 

posted on 2016-01-05 15:19  __MagicPower  阅读(196)  评论(0编辑  收藏  举报