__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()
        cur.execute("SELECT * FROM Writers")

        rows = cur.fetchall()

        desc = cur.description
        print "%s %3s" % (desc[0][0],desc[1][0])

        for row in rows:
            print "%2s %3s" % row
finally:
    con.close()

 Result:

Id Name
 1 Jack London
 2 Tik Tok
 3 Harry Potter

 

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