基于Python3实现的各类数据库连接和连接池

  • 基于Python3的各类数据库连接和连接池, 支持数据库有: Mysql(MariaDB), Oracle, PostgreSQL(GreenPlum), Vertica, Redis, MongoDB;

  • 实现功能有

    1. mysql数据库连接池
    2. mariadb数据库连接池
    3. oracle数据库连接池
    4. postgresql数据库连接池
    5. greenplum数据库连接池
    6. vertica数据库连接池
    7. redis数据库连接池
    8. mongodb数据库连接池
  • 数据库普通连接和连接池:

    数据库名称 普通连接 数据库连接池
    Mysql Y Y
    Postgresql Y Y
    Oracle Y Y
    Vertica Y Y
    Redis Y Y
    MongoDB Y Y

    Y 已实现,N未实现

  • 仓库地址:https://github.com/daniuEvan/db_connect_utils

原文地址:https://www.cnblogs.com/bigox/p/14817728.html