mysqldb庫安裝與python互動操作
要想使python可以操作mysql 就需要MySQL-python驅動,它是python 操作mysql必不可少的模組。
Windows環境下
安裝方法一:
模組下載
http://dev.mysql.com/downloads/connector/python/
1、mysql-connector-python-2.1.3-py2.7-winx64.msi 放在電腦桌面,直接雙擊檔案(注意64位系統選64)安裝,然後看到桌面多了個lib資料夾,把該資料夾裡的全部檔案複製到python安裝目錄下的lib資料夾裡即可。
試執行:
#coding=utf-8 import MySQLdb conn= MySQLdb.connect( host='localhost', port = 3306, user='root', passwd='', db ='use', ) cur = conn.cursor() #建立資料表 cur.execute("create table student(id int ,name varchar(20),class varchar(30),age varchar(10))") #插入一條資料 cur.execute("insert into student values('1','Tom','3 year 2 class','9')") #一次插入多條記錄 sqli="insert into student values(%s,%s,%s,%s)" cur.executemany(sqli,[ ('2','Tom','1 year 1 class','6'), ('3','Jack','2 year 1 class','7'), ('4','Yaheng','2 year 2 class','7'), ]) #獲得表中有多少條資料 aa=cur.execute("select * from student") print aa #打印表中的多少資料 info = cur.fetchmany(aa) for ii in info: print ii
安裝方法二:
下載地址:https://pypi.python.org/pypi/MySQL-python/
下載MySQL-python-1.2.5.zip 檔案之後直接解壓。cmd進入MySQL-python-1.2.5目錄:
>>d:
>>cd MySQL-python-1.2.5
>>python setup.py install
測試非常簡單,檢查MySQLdb 模組是否可以正常匯入。
>>> import MySQLdb
沒有報錯提示MySQLdb模組找不到,說明安裝OK
python 操作mysql資料庫基礎
#coding=utf-8 import MySQLdb conn= MySQLdb.connect( host='localhost', port = 3306, user='root', passwd='123456', db ='test', ) cur = conn.cursor()
#建立資料表
cur.execute("create table student(id int ,name varchar(20),class varchar(30),age varchar(10))")
#插入一條資料
cur.execute("insert into student values('2','Tom','3 year 2 class','9')")
#修改查詢條件的資料
cur.execute("update student set class='3 year 1 class' where name = 'Tom'")
#刪除查詢條件的資料
cur.execute("delete from student where age='9'")
cur.close()
conn.commit()
conn.close()
>>> conn = MySQLdb.connect(host='localhost',port = 3306,user='root', passwd='123456',db ='test',)
Connect() 方法用於建立資料庫的連線,裡面可以指定引數:使用者名稱,密碼,主機等資訊。
這只是連線到了資料庫,要想操作資料庫需要建立遊標。
>>> cur = conn.cursor()
通過獲取到的資料庫連線conn下的cursor()方法來建立遊標。
>>> cur.execute("create table student(id int ,name varchar(20),class varchar(30),age varchar(10))")
通過遊標cur 操作execute()方法可以寫入純sql語句。通過execute()方法中寫如sql語句來對資料進行操作。
>>>cur.close()
cur.close() 關閉遊標
>>>conn.commit()
conn.commit()方法在提交事物,在向資料庫插入一條資料時必須要有這個方法,否則資料不會被真正的插入。
>>>conn.close()
Conn.close()關閉資料庫連線
插入資料
通過上面execute()方法中寫入純的sql語句來插入資料並不方便。如:
>>>cur.execute("insert into student values('2','Tom','3 year 2 class','9')")
我要想插入新的資料,必須要對這條語句中的值做修改。我們可以做如下修改:
#coding=utf-8
import MySQLdb
conn= MySQLdb.connect(
host='localhost',
port = 3306,
user='root',
passwd='123456',
db ='test',
)
cur = conn.cursor()
#插入一條資料
sqli="insert into student values(%s,%s,%s,%s)"
cur.execute(sqli,('3','Huhu','2 year 1 class','7'))
cur.close()
conn.commit()
conn.close()
假如要一次向資料表中插入多條值呢?
#coding=utf-8
import MySQLdb
conn= MySQLdb.connect(
host='localhost',
port = 3306,
user='root',
passwd='123456',
db ='test',
)
cur = conn.cursor()
#一次插入多條記錄
sqli="insert into student values(%s,%s,%s,%s)"
cur.executemany(sqli,[
('3','Tom','1 year 1 class','6'),
('3','Jack','2 year 1 class','7'),
('3','Yaheng','2 year 2 class','7'),
])
cur.close()
conn.commit()
conn.close()
executemany()方法可以一次插入多條值,執行單挑sql語句,但是重複執行引數列表裡的引數,返回值為受影響的行數。
查詢資料
也許你已經嘗試了在python中通過
>>>cur.execute("select * from student")
來查詢資料表中的資料,但它並沒有把表中的資料打印出來,有些失望。
來看看這條語句獲得的是什麼
>>>aa=cur.execute("select * from student")
>>>print aa
5
它獲得的只是我們的表中有多少條資料。那怎樣才能獲得表中的資料呢?進入python shell
>>> import MySQLdb
>>> conn = MySQLdb.connect(host='localhost',port = 3306,user='root', passwd='123456',db ='test',)>>> cur = conn.cursor()>>> cur.execute("select * from student")5L
>>> cur.fetchone()
(1L, 'Alen', '1 year 2 class', '6')>>> cur.fetchone()
(3L, 'Huhu', '2 year 1 class', '7')>>> cur.fetchone()
(3L, 'Tom', '1 year 1 class', '6')
...>>>cur.scroll(0,'absolute')
fetchone()方法可以幫助我們獲得表中的資料,可是每次執行cur.fetchone() 獲得的資料都不一樣,換句話說我沒執行一次,遊標會從表中的第一條資料移動到下一條資料的位置,所以,我再次執行的時候得到的是第二條資料。
scroll(0,'absolute') 方法可以將遊標定位到表中的第一條資料。
還是沒解決我們想要的結果,如何獲得表中的多條資料並打印出來呢?
#coding=utf-8
import MySQLdb
conn= MySQLdb.connect(
host='localhost',
port = 3306,
user='root',
passwd='123456',
db ='test',
)
cur = conn.cursor()
#獲得表中有多少條資料
aa=cur.execute("select * from student") print aa
#打印表中的多少資料
info = cur.fetchmany(aa) for ii in info:
print ii
cur.close()
conn.commit()
conn.close()
通過之前的print aa 我們知道當前的表中有5條資料,fetchmany()方法可以獲得多條資料,但需要指定資料的條數,通過一個for迴圈就可以把多條資料打印出啦!執行結果如下:
5
(1L, 'Alen', '1 year 2 class', '6')
(3L, 'Huhu', '2 year 1 class', '7')
(3L, 'Tom', '1 year 1 class', '6')
(3L, 'Jack', '2 year 1 class', '7')
(3L, 'Yaheng', '2 year 2 class', '7')
[Finished in 0.1s]
至此,三大步驟已配置完畢,python與MySQL互動可順利使用,筆者走了很多彎路(此處省略一萬字囧!!),將全程正確過程總結一下,希望對你有幫助!