本篇文章主要介紹了python使用mysql資料庫範例程式碼,小編覺得蠻不錯的,現在分享給大家,也給大家做個參考。一起跟著小編過來看看吧
一,安裝mysql
#如果是windows 用戶,mysql 的安裝非常簡單,直接下載安裝文件,雙擊安裝文件一步一步進行操作即可。
Linux 下的安裝可能會更簡單,除了下載安裝套件進行安裝外,一般的linux 倉庫中都會有mysql ,我們只需要透過一個指令就可以下載安裝:
Ubuntu\deepin
>>sudo apt-get install mysql-server >>Sudo apt-get install mysql-client
centOS/redhat
>>yum install mysql
二,安裝MySQL-python
#要讓python可以操作mysql 就需要MySQL-python驅動,它是python 操作mysql不可或缺的模組。
下載MySQL-python-1.2.5.zip 檔案之後直接解壓縮。進入MySQL-python-1.2.5目錄:
>>python setup.py install
三,測試
測試非常簡單,檢查MySQLdb 模組是否可以正常匯入。
fnngj@fnngj-H24X:~/pyse$ python Python 2.7.4 (default, Sep 26 2013, 03:20:56) [GCC 4.7.3] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import MySQLdb
沒有報錯提示MySQLdb模組找不到,說明安裝OK ,在下面開始使用python 操作資料庫之前,我們有必要來回顧一下mysql的基本操作:
四,mysql 的基本操作
$ mysql -u root -p (有密码时) $ mysql -u root (无密码时)
mysql> show databases; // 查看当前所有的数据库 +--------------------+ | Database | +--------------------+ | information_schema | | csvt | | csvt04 | | mysql | | performance_schema | | test | +--------------------+ 6 rows in set (0.18 sec) mysql> use test; //作用与test数据库 Database changed mysql> show tables; //查看test库下面的表 Empty set (0.00 sec) //创建user表,name 和password 两个字段 mysql> CREATE TABLE user (name VARCHAR(20),password VARCHAR(20)); Query OK, 0 rows affected (0.27 sec) //向user表内插入若干条数据 mysql> insert into user values('Tom','1321'); Query OK, 1 row affected (0.05 sec) mysql> insert into user values('Alen','7875'); Query OK, 1 row affected (0.08 sec) mysql> insert into user values('Jack','7455'); Query OK, 1 row affected (0.04 sec) //查看user表的数据 mysql> select * from user; +------+----------+ | name | password | +------+----------+ | Tom | 1321 | | Alen | 7875 | | Jack | 7455 | +------+----------+ 3 rows in set (0.01 sec) //删除name 等于Jack的数据 mysql> delete from user where name = 'Jack'; Query OK, 1 rows affected (0.06 sec) //修改name等于Alen 的password 为 1111 mysql> update user set password='1111' where name = 'Alen'; Query OK, 1 row affected (0.05 sec) Rows matched: 1 Changed: 1 Warnings: 0 //查看表内容 mysql> select * from user; +--------+----------+ | name | password | +--------+----------+ | Tom | 1321 | | Alen | 1111 | +--------+----------+ 3 rows in set (0.00 sec)
五,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資料庫的範例程式碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!