import pymysql
# 打开数据库连接
db = pymysql.connect(host='localhost', user='root', password='root', database='test')
# 查询SQL 版本
# 像if、while、def和class这样的复合语句,首行以关键字开始,以冒号( : )结束,该行之后的一行或多行代码构成代码组。
def searchVersion():
# 使用 cursor() 方法创建一个游标对象 cursor
cursor = db.cursor()
# 使用 execute() 方法执行 SQL 查询
cursor.execute("SELECT VERSION()")
# 使用 fetchone() 方法获取单条数据.
data = cursor.fetchone()
print("Database version : %s " % data)
# 关闭数据库连接
db.close()
# SQL 插入语句
# Python 通常是一行写完一条语句,但如果语句很长,我们可以使用反斜杠 \ 来实现多行语句
def InsertSql(sql):
# sql = """INSERT INTO EMPLOYEE(FIRST_NAME,
# LAST_NAME, AGE, SEX, INCOME)
# VALUES ('Mac', 'Mohan', 20, 'M', 2000)"""
try:
# 使用 cursor() 方法创建一个游标对象 cursor
cursor = db.cursor()
# 执行sql语句
cursor.execute(sql)
# 提交到数据库执行
db.commit()
except:
# 如果发生错误则回滚
db.rollback()
# 关闭数据库连接
db.close()
# SQL 查询语句
def SearchSql(sql):
# sql = "SELECT * FROM EMPLOYEE \
# WHERE INCOME >100"
try:
# 使用 cursor() 方法创建一个游标对象 cursor
cursor = db.cursor()
# 执行SQL语句
cursor.execute(sql)
# 获取所有记录列表
results = cursor.fetchall()
for row in results:
fname = row[0]
lname = row[1]
age = row[2]
sex = row[3]
income = row[4]
# 打印结果
print("fname=%s,lname=%s,age=%s,sex=%s,income=%s" % \
(fname, lname, age, sex, income))
except:
print("Error: unable to fetch data")
# 关闭数据库连接
db.close()
# SQL 更新语句
def updateSql(sql):
# sql = "UPDATE EMPLOYEE SET AGE = AGE + 1 WHERE SEX = '%c'" % ('M')
try:
cursor = db.cursor()
# 执行SQL语句
cursor.execute(sql)
# 提交到数据库执行
db.commit()
except:
# 发生错误时回滚
db.rollback()
# 关闭数据库连接
db.close()
# SQL 删除语句
def DeleteSql(sql):
# sql = "DELETE FROM EMPLOYEE WHERE AGE > %s" % (20)
try:
cursor = db.cursor()
# 执行SQL语句
cursor.execute(sql)
# 提交修改
db.commit()
except:
# 发生错误时回滚
db.rollback()
# 关闭连接
db.close()
# 查询sql
sqlStr = "SELECT * FROM EMPLOYEE WHERE INCOME >100"
SearchSql(sqlStr)