python使用mysql數據庫

 

Python使用MySQL數據庫(新)

 

一,安裝mysqlhtml

 

若是是windows 用戶,mysql 的安裝很是簡單,直接下載安裝文件,雙擊安裝文件一步一步進行操做便可。python

Linux 下的安裝可能會更加簡單,除了下載安裝包進行安裝外,通常的linux 倉庫中都會有mysql ,咱們只須要經過一個命令就能夠下載安裝:mysql

Ubuntu\deepinlinux

>>sudo apt-get install mysql-server sql

>>Sudo apt-get install  mysql-clientshell

centOS/redhat數據庫

>>yum install mysqlwindows

 

二,安裝MySQL-pythonpost

要想使python能夠操做mysql 就須要MySQL-python驅動,它是python 操做mysql必不可少的模塊。測試

下載地址:https://pypi.python.org/pypi/MySQL-python/

下載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]
相關文章
相關標籤/搜索