實例1、取得MYSQL版本
程式碼如下:
# -*- coding: UTF-8 -*-
#安裝MYSQL DB for python
import MySQLdb as mdb
con = None5方法:connect('ip','user','password','dbname')
con = mdb.connect('localhost', 'root',
'root', 'test');
'root', 'test');
'root', 'test');
# ,都在連接con的一個模組cursor上面運行的
cur = con.cursor()
#執行查詢
cur.execute("SELECT VERSION()")
cur.execute("SELECT VERSION()")
cur.execute("SELECT VERSION()")
cur.execute("SELECT VERSION()")
cur. data = cur.fetchone()
print "Database version : %s " % data
finally:
if con:
實例2、建立一個表格且插入資料
複製程式碼 程式碼如下:
# -*- coding: UTF-8 -*-import MySQLdbconas mdb
import sys
import sys
#將設定為全域為全域連線
con = mdb.connect('localhost', 'root', 'root', 'test');
with con:
#取得連線的cursor,只有取得了cursor,我們才能進行各種作業
con.cursor()
#建立資料表writers(id,name)
cur.execute("CREATE TABLE IF NOT EXISTS
#以下插入了5個資料
cur.execute("INSERT INTO Writers(Name) VALUES('Jack London')")
cur.execute("INSERT INTO Writers(Name) VALUES( ("INSERT INTO Writers(Name) VALUES('Lion Feuchtwanger')")
cur.execute("INSERT INTO Writers(Name) VALUES('Emile Zola')")
cur.execute("INSERT INTOTO VALUES('Truman Capote')")
實例3、python使用slect獲取mysql的數據並遍歷
# -*- coding: UTF-8 -*-
import MySQLdb as mdbimport sys
#連接mysql,取得連接的物件
con = mdb.connect('localhost', 'root', 'root', 'test');
with con:
#仍然是,第一步要取得連接的cursor對象,用於執行查詢
cur = con.cursor()
#類似其他語言的query函數,execute是python中的執行查詢函數
cur.execute("SELECT fetchall函數,將結果集(多維元組)存入rows裡面
rows = cur.fetchall()
#依序遍歷結果集,發現每個元素,就是表中的一筆記錄,用一個元組來顯示
for row in rows:
print row
複製程式碼 程式碼如下:
(1L, 'Jack London')
(2L, 'Honore detw')(2L, 'Honore detwz,' 4L, 'Emile Zola')
(5L, 'Truman Capote')
實例4、使用字典cursor取得結果集(可以使用表格欄位名字存取值)
複製程式碼 程式碼如下:
# 來源:瘋狂的螞蟻的部落格www.server110.com總結整理
import MySQLdb as mdbimport sys
#取得mysql查詢的連結物件con = mdb.connect('localhost' , 'root', 'root', 'test')
with con:
#取得連接上的字典cursor,注意取得的方法,
#每一個cursor其實都是cursor的子類別
cur = con.cursor( mdb.cursors.DictCursor)
#執行語句不變
cur.execute("SELECT * FROM Writers")
#取得資料方法不變
#遍歷更直接一點)
for row in rows:
#這裡,並使用鍵值對的方法,由鍵名字來取得資料
print "%s %s" % (row[)" ])
實例5、取得單一資料表的欄位名稱和資訊的方法
複製程式碼 程式碼如下:
# 來源:瘋狂的螞蟻的部落格www.server110.com總結整理
import MySQLdb as mdb
import sys
#取得資料庫的連結物件
con = mdb. connect('localhost', 'root', 'root', 'test')
with con:
#取得普通的查詢cursor
cur = con.cursor()
cur.execute("SELECT" rows = cur.fetchall()
#取得連接物件的描述資料
desc = cur.description
print 'cur.description:',desc )% " 7% – 7% 名稱表 c% desc[0][0], desc[1][0])
for row in rows:
#列印結果
.description: (('Id', 3, 1, 11, 11, 0, 0), ('Name', 253, 17, 25, 25, 0, 1))
Id Name
1 Jack London
2 Honore de Balzac
3 Lion Feuchtwanger
4 Emile Zola
實例6、使用Prepared statements執行查詢(更安全方便)
複製程式碼* *-
# 來源:瘋狂的螞蟻的博客www.server110.com總結整理
import MySQLdb as mdb
import sys
con = mdb.connect('localhost', 'root', 'root', 'test')
with con:
#我們看到,這裡可以透過寫一個可以組裝的sql語句來進行
cur.execute("UPDATE Writers SET Name = %s WHERE Id = %s" ("Guy de Maupasant", "4"))
print "Number of rows updated: %d" % cur.rowcount
結果:複製程式碼
:
Number of rows updated: 1