pymysql基本使用

文章目录

  • 1.入门体会
  • 2. 连接对象的使用
    • 2.1.创建连接对象
    • 2.2.使用连接对象
      • 1. 创建游标对象
      • 2. 切换数据库
      • 3. 关闭连接
      • 4. 事务操作的方法
  • 3.游标对象的使用
    • 3.1游标对象用于执行sql语句
    • 3.2游标对象获取数据
    • 3.3游标的关闭
    • 4.一次添加多条数据
    • 事务练习

1.入门体会

  1. 导入模块
    import pymysql
  2. 创建连接对象
cnn = pymysql.connect(host="localhost",

                      user="root",

                      password="root",

                      database="itsource",

                      charset="utf8",

                      port=3306)
  1. 创建游标对象
cursor = cnn.cursor()
  1. 准备sql语句
sql = """

select * from student

"""
  1. 使用游标对象执行sql
cursor.execute(sql)
  1. 使用游标对象获取数据
data = cursor.fetchall()

print(data)

  1. 关闭游标和数据库连接
cursor.

你可能感兴趣的:(MySQL,python,mysql)