python连接mysql-PyMySql模块
安装
pip3 install pymysql
使用
输出mysql版本
1 import pymysql 2 3 # 打开数据库连接 4 db = pymysql.connect("localhost", "root", "root", "mysql") 5 # 使用 cursor() 方法创建一个游标对象 cursor 6 cursor = db.cursor() 7 # 使用 execute() 方法执行 SQL 查询 8 cursor.execute("SELECT VERSION()") 9 # 使用 fetchone() 方法获取单条数据. 10 data = cursor.fetchone() 11 print("Database version : %s " % data) 12 # 关闭数据库连接 13 db.close() 14 15 ''' 16 result; 17 Database version : 5.6.19 18 '''
创建表
1 import pymysql 2 3 # 打开数据库连接 4 db = pymysql.connect("localhost", "root", "root", "testdb") 5 # 使用 cursor() 方法创建一个游标对象 cursor 6 cursor = db.cursor() 7 # 使用 execute() 方法执行 SQL,如果表存在则删除 8 cursor.execute("DROP TABLE IF EXISTS UserInfo") 9 # 使用预处理语句创建表 10 sql = """CREATE TABLE UserInfo ( 11 Name CHAR(20) NOT NULL, 12 AGE INT, 13 SEX CHAR(1) )""" 14 cursor.execute(sql) 15 # 关闭数据库连接 16 db.close()
执行sql
1 import pymysql 2 3 # 打开数据库连接 4 db = pymysql.connect("localhost", "root", "root", "testdb") 5 # 使用cursor()方法获取操作游标 6 cursor = db.cursor() 7 # SQL 插入语句 8 sql = """INSERT INTO UserInfo(Name,AGE, SEX) 9 VALUES ('张三', 18, '男')""" 10 try: 11 # 执行sql语句 12 cursor.execute(sql) 13 # 提交到数据库执行 14 db.commit() 15 except: 16 # 如果发生错误则回滚 17 db.rollback() 18 # 关闭数据库连接 19 db.close()
查询
-
cursor.fetchall()
接收全部的返回结果行.
1 import pymysql 2 3 # 打开数据库连接 4 db = pymysql.connect("localhost", "root", "root", "testdb") 5 # 使用cursor()方法获取操作游标 6 cursor = db.cursor() 7 # SQL 查询语句 8 sql = "SELECT * FROM UserInfo" 9 try: 10 # 执行SQL语句 11 cursor.execute(sql) 12 # 获取所有记录列表 13 results = cursor.fetchall() 14 for row in results: 15 name = row[0] 16 age = row[1] 17 sex = row[2] 18 # 打印结果 19 print("name=%s,age=%d,sex=%s" % 20 (name, age, sex)) 21 except: 22 print("Error: unable to fetch data") 23 # 关闭数据库连接 24 db.close() 25 ''' 26 result: 27 name=张三,age=18,sex=男 28 name=李四,age=19,sex=女 29 '''
-
cursor.fetchone()
该方法获取下一个查询结果集。结果集是一个对象
1 import pymysql 2 3 # 打开数据库连接 4 db = pymysql.connect("localhost", "root", "root", "testdb") 5 # 使用cursor()方法获取操作游标 6 cursor = db.cursor() 7 # SQL 查询语句 8 sql = "SELECT * FROM UserInfo" 9 try: 10 # 执行SQL语句 11 cursor.execute(sql) 12 # 获取所有记录列表 13 while 1: 14 one = cursor.fetchone() 15 if one: 16 print(one) 17 else: 18 break 19 except: 20 print("Error: unable to fetch data") 21 # 关闭数据库连接 22 db.close() 23 ''' 24 result: 25 ('张三', 18, '男') 26 ('李四', 19, '女') 27 '''
注:可通过 cursor = db.cursor(cursor=pymysql.cursors.DictCursor) 的方式让游标以字典方式返回数据。
执行事务
对于支持事务的数据库, 在Python数据库编程中,当游标建立之时,就自动开始了一个隐形的数据库事务。 commit()方法提交所有更新操作,rollback()方法回滚当前游标的所有操作。
1 import pymysql 2 3 # 打开数据库连接 4 db = pymysql.connect("localhost", "root", "root", "testdb") 5 # 使用cursor()方法获取操作游标 6 cursor = db.cursor() 7 # SQL 删除语句 8 sql = "DELETE FROM UserInfo WHERE AGE > '%d'" % (18) 9 try: 10 # 执行SQL语句 11 cursor.execute(sql) 12 # 提交修改 13 db.commit() 14 except: 15 # 发生错误时回滚 16 db.rollback() 17 # 关闭连接 18 db.close()
错误处理
异常 | 描述 |
---|---|
Warning | 当有严重警告时触发,例如插入数据是被截断等等。必须是 StandardError 的子类。 |
Error | 警告以外所有其他错误类。必须是 StandardError 的子类。 |
InterfaceError | 当有数据库接口模块本身的错误(而不是数据库的错误)发生时触发。 必须是Error的子类。 |
DatabaseError | 和数据库有关的错误发生时触发。 必须是Error的子类。 |
DataError | 当有数据处理时的错误发生时触发,例如:除零错误,数据超范围等等。 必须是DatabaseError的子类。 |
OperationalError | 指非用户控制的,而是操作数据库时发生的错误。例如:连接意外断开、 数据库名未找到、事务处理失败、内存分配错误等等操作数据库是发生的错误。 必须是DatabaseError的子类。 |
IntegrityError | 完整性相关的错误,例如外键检查失败等。必须是DatabaseError子类。 |
InternalError | 数据库的内部错误,例如游标(cursor)失效了、事务同步失败等等。 必须是DatabaseError子类。 |
ProgrammingError | 程序错误,例如数据表(table)没找到或已存在、SQL语句语法错误、 参数数量错误等等。必须是DatabaseError的子类。 |
NotSupportedError | 不支持错误,指使用了数据库不支持的函数或API等。例如在连接对象上 使用.rollback()函数,然而数据库并不支持事务或者事务已关闭。 必须是DatabaseError的子类。 |
Java博客目录 | Python博客目录 | C#博客目录