python 3 0操作mysql資料庫

2021-08-13 11:30:11 字數 3634 閱讀 6824

mysqldb目前還不支援python3.0,可以用pymysql代替

一、安裝方法

pip install pymysql

二、連線資料庫

import pymysql

# 開啟資料庫連線

db=pymysql.connect("172.20.100.64","root","coship","cdnmsb021")

# 使用cursor()方法獲取操作游標

cursor = db.cursor()

# 使用execute方法執行sql語句

cursor.execute("select version()")

# 使用 fetchone() 方法獲取資料

data = cursor.fetchone()

print("database version : %s " % data)

# 關閉資料庫連線

db.close()

執行以上指令碼輸出結果如下:

database version : 5.5

.38-log

三、建立資料庫表

我們可以使用execute()方法來為資料庫建立表,如下所示建立表employee:

import pymysql

# 開啟資料庫連線

db = mysqldb.connect("localhost","testuser","test123","testdb" )

# 使用cursor()方法獲取操作游標

cursor = db.cursor()

# 如果資料表已經存在使用 execute() 方法刪除表。

cursor.execute("drop table if exists employee")

# 建立資料表sql語句

sql = """create table employee (

first_name char(20) not null,

last_name char(20),

age int,

*** char(1),

income float )"""

cursor.execute(sql)

# 關閉資料庫連線

db.close()

四、資料庫插入操作

import pymysql

# 開啟資料庫連線

db = mysqldb.connect("localhost","testuser","test123","testdb" )

# 使用cursor()方法獲取操作游標

cursor = db.cursor()

# sql 插入語句

sql = "insert into employee(first_name, \

last_name, age, ***, income) \

values ('%s', '%s', '%d', '%c', '%d' )" % \

('mac', 'mohan', 20, 'm', 2000)

try:

# 執行sql語句

cursor.execute(sql)

# 提交到資料庫執行

db.commit()

except:

# 發生錯誤時回滾

db.rollback()

# 關閉資料庫連線

db.close()

五、資料庫查詢操作

查詢mysql使用 fetchone() 方法獲取單條資料, 使用fetchall() 方法獲取多條資料。

fetchone(): 該方法獲取下乙個查詢結果集。結果集是乙個物件

fetchall():接收全部的返回結果行.

rowcount: 這是乙個唯讀屬性,並返回執行execute()方法後影響的行數。

import pymysql

# 開啟資料庫連線

db = mysqldb.connect("localhost","testuser","test123","testdb" )

# 使用cursor()方法獲取操作游標

cursor = db.cursor()

# sql 查詢語句

sql = "select * from employee \

where income > '%d'" % (1000)

try:

# 執行sql語句

cursor.execute(sql)

# 獲取所有記錄列表

results = cursor.fetchall()

for row in results:

fname = row[0]

lname = row[1]

age = row[2]

*** = row[3]

income = row[4]

# 列印結果

print

"fname=%s,lname=%s,age=%d,***=%s,income=%d" % \

(fname, lname, age, ***, income )

except:

print

"error: unable to fecth data"

# 關閉資料庫連線

db.close()

六、資料庫更新操作

import pymysql

# 開啟資料庫連線

db = mysqldb.connect("localhost","testuser","test123","testdb" )

# 使用cursor()方法獲取操作游標

cursor = db.cursor()

# sql 更新語句

sql = "update employee set age = age + 1 where *** = '%c'" % ('m')

try:

# 執行sql語句

cursor.execute(sql)

# 提交到資料庫執行

db.commit()

except:

# 發生錯誤時回滾

db.rollback()

# 關閉資料庫連線

db.close()

七、資料庫刪除操作

import pymysql

# 開啟資料庫連線

db = mysqldb.connect("localhost","testuser","test123","testdb" )

# 使用cursor()方法獲取操作游標

cursor = db.cursor()

# sql 刪除語句

sql = "delete from employee where age > '%d'" % (20)

try:

# 執行sql語句

cursor.execute(sql)

# 提交修改

db.commit()

except:

# 發生錯誤時回滾

db.rollback()

# 關閉連線

db.close()

Python3 0的新改動

這篇文章主要介紹了相比於python2.6,python3.0的新特性。更詳細的介紹請參見 python3.0的文件。common stumbling blocks 本段簡單的列出容易使人出錯的變動 初學者應該注意 old print the answer is 2 2 new print the ...

python 3 0 在for中使用insert

首先在python 3.0手冊中有這麼個示例 a cat window defenestrate for x in a make a slice copy of the entire list if len x 6 a.insert 0,x a defenestrate cat window def...

Python 3 0最簡單的爬蟲

做個小專案練練手,比較有動力繼續下去,這邊參考最簡單的爬蟲程式自己抄了一下。但是因為3.0的關係,無法直接使用,根據2.0版本的 進行修改後成功了。如下 coding utf 8 import urllib.request import re 該函式用於獲取html內容 使用到urlopen的函式 ...