IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 大数据 -> Python接口自动化实战—6.数据库操作 -> 正文阅读

[大数据]Python接口自动化实战—6.数据库操作

前情提要

  1. 数据库信息可以在config.ini文件配置并读取
  2. 通过pymysql对数据库进行连接(具体方法具体封装),代码如下(不废话)
import pymysql
from tools import read_config


# ================封装MySQL基本操作=================
class ReadDB:

    def __init__(self):
        print("Mysql数据库连接中...")
        config = read_config.ReadConfig()
        env = config.get_data("Env", "env")
        self.host = config.get_data(env, "mysql_host")
        self.port = int(config.get_data(env, "mysql_port"))
        self.user = config.get_data(env, "mysql_user")
        self.password = config.get_data(env, "mysql_password")
        self.db = config.get_data(env, "mysql_db")

        # 连接数据# port = port  # cursorclass=cursors.DictCursor
        try:
            self.db_conn = pymysql.connect(host = self.host, port = self.port, user = self.user,
                                           password = self.password, db = self.db, charset="utf8")
            print("Mysql数据库连接成功")
        except pymysql.err.OperationalError as e:
            print("Mysql Error %d:%s" % (e.args[0], e.args[1]))

    # 查找表数据cursor.execute("SET FOREIGN_KEY_CHECKS = 0;")
    def select(self, select_sql):
        try:
            print("执行sql语句:", select_sql)
            with self.db_conn.cursor() as cursor:
                cursor.execute(select_sql)
                print(cursor.execute(select_sql))
            self.db_conn.commit()
            print("成功查找:", cursor.rowcount, "条数据")
            cursor.close()
        except Exception as e:
            print("查找数据失败:", e.args)

    def select_where(self, table_name, filed_name, data):
        try:
            if filed_name != None:
                select_sql = "select %s from " + table_name + " where " + filed_name + " = '%s';"
            else:
                select_sql = "select %s from " + table_name + ";"
            print("执行sql语句:", select_sql % data)
            with self.db_conn.cursor() as cursor:
                cursor.execute(select_sql % data)
            self.db_conn.commit()
            print("成功查找:", cursor.rowcount, "条数据")
            cursor.close()
        except Exception as e:
            print("查找数据失败:", e.args)

    # 删除表数据
    def delete_where(self, table_name, field_name, data):
        try:
            delete_sql = "delete from " + table_name + " where " + field_name + " = '%s';"
            print("执行sql语句:", delete_sql % data)
            with self.db_conn.cursor() as cursor:
                cursor.execute(delete_sql % data)
                print(cursor.execute(delete_sql % data))
            self.db_conn.commit()
            print("成功删除:", cursor.rowcount, "条数据")
            cursor.close()
        except Exception as e:
            print("删除数据失败:", e.args)

    # 插入表数据
    def insert(self, table_name, table_data):
        try:
            for key in table_data:
                table_data[key] = "'" + str(table_data[key]) + "'"
            key = ','.join(table_data.keys())
            value = ",".join(table_data.values())
            insert_sql = "INSERT INTO " + table_name + " (" + key + ") VALUES (" + value + ")" + ";"
            print("执行sql语句:", insert_sql)
            with self.db_conn.cursor() as cursor:
                cursor.execute(insert_sql)
            self.db_conn.commit()
            print("成功插入:", cursor.rowcount, "条数据")
            cursor.close()
        except Exception as e:
            print("插入数据失败:", e.args)

    # 更新数据库数据
    def update(self, update_sql):
        try:
            print("执行sql语句:", update_sql)
            with self.db_conn.cursor() as cursor:
                cursor.execute(update_sql)
                print(cursor.execute(update_sql))
            self.db_conn.commit()
            print("成功更新:", cursor.rowcount, "条数据")
            cursor.close()
        except Exception as e:
            print("更新数据失败:", e.args)

    def update_where(self, table_name, filed1_name, field2_name, data):
        try:
            update_sql = "UPDATE " + table_name + " SET " + filed1_name + " = '%s' where " + field2_name + " = '%s';"
            print("执行sql语句:", update_sql % data)
            with self.db_conn.cursor() as cursor:
                cursor.execute(update_sql % data)
                print(cursor.execute(update_sql % data))
            self.db_conn.commit()
            print("成功更新:", cursor.rowcount, "条数据")
            cursor.close()
        except Exception as e:
            print("更新数据失败:", e.args)

    def get_info(self):
        print(self.db_conn.get_autocommit(),
              self.db_conn.get_host_info(),
              self.db_conn.get_server_info(),
              self.db_conn.get_proto_info())


    # 关闭数据库连接
    def close(self):
        self.db_conn.close()
        print("Mysql关闭成功")


if __name__ == '__main__':
    Test = ReadDB()
    sql = 'SELECT * FROM {} WHERE xxx= {}'.format("t_account", xxx)
  大数据 最新文章
实现Kafka至少消费一次
亚马逊云科技:还在苦于ETL?Zero ETL的时代
初探MapReduce
【SpringBoot框架篇】32.基于注解+redis实现
Elasticsearch:如何减少 Elasticsearch 集
Go redis操作
Redis面试题
专题五 Redis高并发场景
基于GBase8s和Calcite的多数据源查询
Redis——底层数据结构原理
上一篇文章      下一篇文章      查看所有文章
加:2021-10-26 12:16:31  更:2021-10-26 12:18:33 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 2:45:31-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码