[关闭]
@songying 2018-09-20T18:36:19.000000Z 字数 468 阅读 1158

python 之 PyMySQL

python库


参考:

API文档

pymysql文档

安装

  1. pip install PyMySQL
  2. import pymysql

连接

  1. connection = pymysql.connect(host='localhost',
  2. user='user_name',
  3. password='passwd',
  4. db='database_name',
  5. charset='utf8mb4',
  6. cursorclass=pymysql.cursors.DictCursor)

Connection对象

connection.close

  1. connection.close() # 关闭连接

connection.commit

  1. connection.commit() # 将操作提交到数据库

connection.rollback

  1. connection.rollback() # 数据库回滚

Cursor对象

获取Cursor对象

  1. cursor = connection.cursor() # 返回Cursor对象

cursor.excete

  1. sql = "sql语句"
  2. cursor.execute(sql)
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注