這篇文章主要介紹了python連接MySQL數據庫,實例分析了Python操作MySQL的相關技巧,需要的朋友可以參考下
本文實例講述了python連接MySQL數據庫的方法。分享給大家供大家參考。具體實現方法如下:
- 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程序設計有所幫助。
新聞熱點
疑難解答