連線資料庫前,請先確認以下事項:
#!/usr/bin/python執行以上指令碼輸出結果如下:# -*- coding: utf-8 -*-
import mysqldb
# 開啟資料庫連線
db = mysqldb.connect("localhost", "testuser", "test123", "testdb", charset='utf8' )
# 使用cursor()方法獲取操作游標
cursor = db.cursor()
# 使用execute方法執行sql語句
cursor.execute("select version()")
# 使用 fetchone() 方法獲取一條資料
data = cursor.fetchone()
print "database version : %s " % data
# 關閉資料庫連線
db.close()
database version : 5.0.45
#!/usr/bin/python# -*- coding: utf-8 -*-
import mysqldb
# 開啟資料庫連線
db = mysqldb.connect("localhost", "testuser", "test123", "testdb", charset='utf8' )
# 使用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()
#!/usr/bin/pythonpython查詢mysql使用 fetchone() 方法獲取單條資料, 使用fetchall() 方法獲取多條資料。# -*- coding: utf-8 -*-
import mysqldb
# 開啟資料庫連線
db = mysqldb.connect("localhost", "testuser", "test123", "testdb", charset='utf8' )
# 使用cursor()方法獲取操作游標
cursor = db.cursor()
# sql 插入語句
sql = """insert into employee(first_name,
last_name, age, ***, income)
values ('mac', 'mohan', 20, 'm', 2000)"""
try:
# 執行sql語句
cursor.execute(sql)
# 提交到資料庫執行
db.commit()
except:
# rollback in case there is any error
db.rollback()
# 關閉資料庫連線
db.close()
查詢employee表中salary(工資)字段大於1000的所有資料:
#!/usr/bin/python更新操作用於更新資料表的的資料,以下例項將 employee 表中的 *** 欄位為 'm' 的 age 字段遞增 1:# -*- coding: utf-8 -*-
import mysqldb
# 開啟資料庫連線
db = mysqldb.connect("localhost", "testuser", "test123", "testdb", charset='utf8' )
# 使用cursor()方法獲取操作游標
cursor = db.cursor()
# sql 查詢語句
sql = "select * from employee \
where income > %s" % (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=%s,***=%s,income=%s" % \
(fname, lname, age, ***, income )
except:
print "error: unable to fecth data"
# 關閉資料庫連線
db.close()
#!/usr/bin/python刪除操作用於刪除資料表中的資料,以下例項演示了刪除資料表 employee 中 age 大於 20 的所有資料:# -*- coding: utf-8 -*-
import mysqldb
# 開啟資料庫連線
db = mysqldb.connect("localhost", "testuser", "test123", "testdb", charset='utf8' )
# 使用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()
#!/usr/bin/python# -*- coding: utf-8 -*-
import mysqldb
# 開啟資料庫連線
db = mysqldb.connect("localhost", "testuser", "test123", "testdb", charset='utf8' )
# 使用cursor()方法獲取操作游標
cursor = db.cursor()
# sql 刪除語句
sql = "delete from employee where age > %s" % (20)
try:
# 執行sql語句
cursor.execute(sql)
# 提交修改
db.commit()
except:
# 發生錯誤時回滾
db.rollback()
# 關閉連線
db.close()
python操作mysql查詢資料
首先需要連線資料庫,然後才查詢出資料。例如下表名字為 sinauser iduse id use name11 db12 2db233 db3class database def init self self.conn mysqldb.connect 連線資料庫 host 連線你要取出資料庫的ip,...
python操作MySQL資料庫
堅持每天學一點,每天積累一點點,作為自己每天的業餘收穫,這個文章是我在吃飯的期間寫的,利用自己零散的時間學了一下python操作mysql,所以整理一下。我採用的是mysqldb操作的mysql資料庫。先來乙個簡單的例子吧 import mysqldb try conn mysqldb.connec...
Python操作Mysql資料庫
coding utf8 author yangjing import mysqldb 查詢。def select host user root password port 3306,db sql connect mysqldb.connect host host,user user,passwd p...