CentOS下安裝
sudo yum install MySQL-python
可以參考http://www.mikusa.com/python-mysql-docs/index.html 獲取更多信息
MySQL-python 為Python提供MySQL驅動程序,主要包括兩個部件,_mysql和MySQLdb
《Python開發技術詳解》.( 周偉,宗傑).[高清PDF掃描版+隨書視頻+代碼] http://www.linuxidc.com/Linux/2013-11/92693.htm
Python腳本獲取Linux系統信息 http://www.linuxidc.com/Linux/2013-08/88531.htm
Python下使用MySQLdb模塊 http://www.linuxidc.com/Linux/2012-06/63620.htm
1.連接數據庫
In [56]: import MySQLdb
In [57]: db=MySQLdb.connect(host='127.0.0.1',user='xxx',passwd='xxx',db='xxx')
2.創建游標
為了能夠在多處使用同一個連接,可以創建一個游標對象
In [60]: cur=db.cursor()
3.執行MySQL查詢操作
創建數據庫表
In [62]: cur.execute("CREATE TABLE song (id INT UNSIGNED PRIMARY KEY AUTO_INCREMENT,title TEXT NOT NULL)")
In [67]: songs=('Purple Haze','All Along the Watch Tower','Foxy Lady')
In [68]: for song in songs:
....: cur.execute("INSERT INTO song(title) VALUES (%s)",song)
....: print "Auto Increment ID: %s" %cur.lastrowid
....:
Python 的詳細介紹:請點這裡
Python 的下載地址:請點這裡