码迷,mamicode.com
首页 > 数据库 > 详细

python 连接 MySQL 数据库

时间:2020-01-14 23:49:34      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:erro   database   code   exec   ==   class   hal   int   sql 语句   

import pymysql


# 数据库连接
def db_connect():
    # 打开数据库连接
    db = pymysql.connect(localhost, root, lms12100513....., student)
    # 使用 cursor()方法创建一个游标对象 cursor
    cursor = db.cursor()
    # 使用 execute()方法执行 SQL 查询
    cursor.execute(select version())
    # 使用 fetchone()方法获取单条数据
    data = cursor.fetchone()
    print(fDatabase version: {data[0]})
    # 关闭数据库连接,此时自动关闭多有游标对象
    db.close()


# 创建数据库表
def create_table():
    # 打开数据库连接
    db = pymysql.connect(localhost, root, lms12100513....., student)
    # 使用 cursor()方法创建一个游标对象 cursor
    cursor = db.cursor()
    # 使用 execute()方法执行 SQL,如果表存在就删除
    cursor.execute(drop table if exists teacher)
    # 使用预处理语句创建表
    sql = ‘‘‘create table teacher(
        id int primary key,
        name varchar(20) not null,
        sex varchar(2) not null,
        age int not null)‘‘‘
    try:
        cursor.execute(sql)
        print(CREATE TABLE SUCCESS.)
    # 捕获与数据库相关的错误
    except pymysql.err.DatabaseError as de:
        print(fCREATE TABLE FAILED, CASE:{de})
    finally:
        # 关闭数据库连接
        db.close()


# 删除数据库表
def drop_table():
    # 打开数据库连接
    db = pymysql.connect(localhost, root, lms12100513....., student)
    # 使用 cursor()方法创建一个游标对象 cursor
    cursor = db.cursor()
    # 使用预处理语句删除表
    sql = drop table teacher
    try:
        cursor.execute(sql)
        print(DROP TABLE SUCCESS.)
    # 捕获与数据库相关的错误
    except pymysql.err.DatabaseError as de:
        print(fDROP TABLE FAILED, CASE:{de})
    finally:
        # 关闭数据库连接
        db.close()


# 数据库插入
def insert_record():
    # 打开数据库连接
    db = pymysql.connect(localhost, root, lms12100513....., student)
    # 使用 cursor()方法创建一个游标对象 cursor
    cursor = db.cursor()
    # SQL 插入语句
    sql = insert into information values(1001, "小明", "男", 18)
    try:
        # 执行 SQL 语句
        cursor.execute(sql)
        # 提交到数据库执行
        db.commit()
        print(INSERT SUCCESS.)
    # 捕获与数据库相关的错误
    except pymysql.err.DatabaseError as de:
        print(fINSERT INTO MySQL table FAILED, CASE:{de})
        # 如果发生错误就回滚
        db.rollback()
    finally:
        # 关闭数据库连接
        db.close()


# 数据库删除
def delete_record():
    # 打开数据库连接
    db = pymysql.connect(localhost, root, lms12100513....., student)
    # 使用 cursor()方法创建一个游标对象 cursor
    cursor = db.cursor()
    # SQL 删除语句
    sql = delete from information where sex="女"
    try:
        # 执行 SQL 语句
        cursor.execute(sql)
        # 提交到数据库执行
        db.commit()
        print(DELETE SUCCESS.)
    # 捕获与数据库相关的错误
    except pymysql.err.DatabaseError as de:
        print(fDELETE RECORD FAILED, CASE:{de})
        # 如果发生错误就回滚
        db.rollback()
    finally:
        # 关闭数据库连接
        db.close()


# 数据库更新
def update_record():
    # 打开数据库连接
    db = pymysql.connect(localhost, root, lms12100513....., student)
    # 使用 cursor()方法创建一个游标对象 cursor
    cursor = db.cursor()
    # SQL 更新语句
    sql = update information set age=25 where name="小明"
    try:
        # 执行 SQL 语句
        cursor.execute(sql)
        # 提交到数据库执行
        db.commit()
        print(UPDATE SUCCESS.)
    # 捕获与数据库相关的错误
    except pymysql.err.DatabaseError as de:
        print(fUPDATE MySQL table FAILED, CASE:{de})
        # 如果发生错误就回滚
        db.rollback()
    finally:
        # 关闭数据库连接
        db.close()


# 数据库查询
def query_record():
    # 打开数据库连接
    db = pymysql.connect(localhost, root, lms12100513....., student)
    # 使用 cursor()方法创建一个游标对象 cursor
    cursor = db.cursor()
    # SQL 查询语句
    sql = select * from information
    try:
        # 执行 SQL 语句
        cursor.execute(sql)
        ‘‘‘
        fetchone():该方法获取下一个查询结果集,结果集是一个对象。
        fetchall():接收全部返回结果行。
        rowcount:返回执行 execute()方法后影响的行数
        ‘‘‘
        # 获取所有记录列表
        results = cursor.fetchall()
        for row in results:
            num = row[0]
            name = row[1]
            sex = row[2]
            age = row[3]
            # 输出结果
            print(fid:{num}, name:{name}, sex:{sex}, age:{age})
    # 捕获与数据库相关的错误
    except pymysql.err.DatabaseError as de:
        print(fQUERY MySQL table FAILED, CASE:{de})
    finally:
        # 关闭数据库连接
        db.close()


if __name__ == __main__:
    query_record()

python 连接 MySQL 数据库

标签:erro   database   code   exec   ==   class   hal   int   sql 语句   

原文地址:https://www.cnblogs.com/liumengsong/p/12194396.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!