本文實(shí)例講述了python連接MySQL數(shù)據(jù)庫的方法。分享給大家供大家參考。具體實(shí)現(xiàn)方法如下:
1
2
3
4
5
6
7
8
9
10
11
12
|
import MySQLdb conn = MySQLdb.connect(host = "localhost" , user = "root" , passwd = "123456" , db = "test" ) cursor = conn.cursor() cursor.execute( "select * from hard" ) res = cursor.fetchall() for x in res: print x cursor.close() conn.close() |
運(yùn)行結(jié)果如下:
希望本文所述對大家的python程序設(shè)計(jì)有所幫助。