本文實例講述了python連接MySQL數據庫的方法。分享給大家供大家參考。具體實現方法如下:
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() |
運行結果如下:
希望本文所述對大家的python程序設計有所幫助。