基本信息
源码名称:mysql-connector-python-2.2.2.zip
源码大小:11.41M
文件格式:.zip
开发语言:Python
更新时间:2023-10-19
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
mysql-connector-python-2.2.2.zip
从oracle官网下载下来,支持Python3.6版本,亲测有效。 解压后执行setup.py install即可。 Python命令行下执行import mysql成功即安装成功。

.
├── mysql-connector-python-2.2.2
│   ├── CHANGES.txt
│   ├── LICENSE.txt
│   ├── MANIFEST.in
│   ├── PKG-INFO
│   ├── README.txt
│   ├── docs
│   │   └── README_DOCS.txt
│   ├── examples
│   │   ├── __init__.py
│   │   ├── dates.py
│   │   ├── engines.py
│   │   ├── inserts.py
│   │   ├── microseconds.py
│   │   ├── multi_resultsets.py
│   │   ├── mysql_warnings.py
│   │   ├── prepared_statements.py
│   │   ├── transaction.py
│   │   ├── unicode.py
│   │   └── warnings.py
│   ├── lib
│   │   ├── __init__.py
│   │   ├── cpy_distutils.py
│   │   ├── mysql
│   │   │   ├── __init__.py
│   │   │   └── connector
│   │   │       ├── __init__.py
│   │   │       ├── abstracts.py
│   │   │       ├── authentication.py
│   │   │       ├── catch23.py
│   │   │       ├── charsets.py
│   │   │       ├── connection.py
│   │   │       ├── connection_cext.py
│   │   │       ├── constants.py
│   │   │       ├── conversion.py
│   │   │       ├── cursor.py
│   │   │       ├── cursor_cext.py
│   │   │       ├── custom_types.py
│   │   │       ├── dbapi.py
│   │   │       ├── django
│   │   │       │   ├── __init__.py
│   │   │       │   ├── base.py
│   │   │       │   ├── client.py
│   │   │       │   ├── compiler.py
│   │   │       │   ├── creation.py
│   │   │       │   ├── features.py
│   │   │       │   ├── introspection.py
│   │   │       │   ├── operations.py
│   │   │       │   ├── schema.py
│   │   │       │   └── validation.py
│   │   │       ├── errorcode.py
│   │   │       ├── errors.py
│   │   │       ├── fabric
│   │   │       │   ├── __init__.py
│   │   │       │   ├── balancing.py
│   │   │       │   ├── caching.py
│   │   │       │   └── connection.py
│   │   │       ├── locales
│   │   │       │   ├── __init__.py
│   │   │       │   └── eng
│   │   │       │       ├── __init__.py
│   │   │       │       └── client_error.py
│   │   │       ├── network.py
│   │   │       ├── optionfiles.py
│   │   │       ├── pooling.py
│   │   │       ├── protocol.py
│   │   │       ├── utils.py
│   │   │       └── version.py
│   │   └── mysqlx
│   │       ├── __init__.py
│   │       ├── authentication.py
│   │       ├── charsets.py
│   │       ├── compat.py
│   │       ├── connection.py
│   │       ├── constants.py
│   │       ├── crud.py
│   │       ├── dbdoc.py
│   │       ├── errorcode.py
│   │       ├── errors.py
│   │       ├── expr.py
│   │       ├── expr_unparser.py
│   │       ├── locales
│   │       │   ├── __init__.py
│   │       │   └── eng
│   │       │       ├── __init__.py
│   │       │       └── client_error.py
│   │       ├── protobuf
│   │       │   ├── __init__.py
│   │       │   ├── mysqlx_connection_pb2.py
│   │       │   ├── mysqlx_crud_pb2.py
│   │       │   ├── mysqlx_datatypes_pb2.py
│   │       │   ├── mysqlx_expect_pb2.py
│   │       │   ├── mysqlx_expr_pb2.py
│   │       │   ├── mysqlx_notice_pb2.py
│   │       │   ├── mysqlx_pb2.py
│   │       │   ├── mysqlx_resultset_pb2.py
│   │       │   ├── mysqlx_session_pb2.py
│   │       │   ├── mysqlx_sql_pb2.py
│   │       │   └── t.py
│   │       ├── protocol.py
│   │       ├── result.py
│   │       └── statement.py
│   ├── setup.py
│   ├── setupinfo.py
│   ├── src
│   │   ├── exceptions.c
│   │   ├── force_cpp_linkage.cc
│   │   ├── include
│   │   │   ├── catch23.h
│   │   │   ├── exceptions.h
│   │   │   ├── mysql_capi.h
│   │   │   ├── mysql_capi_conversion.h
│   │   │   └── mysql_connector.h
│   │   ├── mysql_capi.c
│   │   ├── mysql_capi_conversion.c
│   │   └── mysql_connector.c
│   ├── tests
│   │   ├── __init__.py
│   │   ├── cext
│   │   │   ├── __init__.py
│   │   │   ├── test_cext_api.py
│   │   │   ├── test_cext_connection.py
│   │   │   └── test_cext_cursor.py
│   │   ├── data
│   │   │   ├── local_data.csv
│   │   │   ├── option_files
│   │   │   │   ├── dup_groups.cnf
│   │   │   │   ├── include_files
│   │   │   │   │   ├── 1.cnf
│   │   │   │   │   └── 2.cnf
│   │   │   │   ├── my.cnf
│   │   │   │   └── pool.cnf
│   │   │   ├── random_big_bin.csv
│   │   │   └── ssl
│   │   │       ├── tests_CA_cert.pem
│   │   │       ├── tests_CA_key.pem
│   │   │       ├── tests_client_cert.pem
│   │   │       ├── tests_client_key.pem
│   │   │       ├── tests_server_cert.pem
│   │   │       └── tests_server_key.pem
│   │   ├── issues
│   │   │   ├── __init__.py
│   │   │   ├── test_bug21449207.py
│   │   │   ├── test_bug21449996.py
│   │   │   ├── test_bug21879859.py
│   │   │   ├── test_bug21879914.py
│   │   │   └── test_bug22545879.py
│   │   ├── mysqld.py
│   │   ├── py26.py
│   │   ├── test_abstracts.py
│   │   ├── test_authentication.py
│   │   ├── test_bugs.py
│   │   ├── test_connection.py
│   │   ├── test_constants.py
│   │   ├── test_conversion.py
│   │   ├── test_cursor.py
│   │   ├── test_django.py
│   │   ├── test_errorcode.py
│   │   ├── test_errors.py
│   │   ├── test_examples.py
│   │   ├── test_fabric.py
│   │   ├── test_locales.py
│   │   ├── test_mysql_datatypes.py
│   │   ├── test_mysqlx_connection.py
│   │   ├── test_mysqlx_crud.py
│   │   ├── test_mysqlx_errorcode.py
│   │   ├── test_mysqlx_errors.py
│   │   ├── test_network.py
│   │   ├── test_optionfiles.py
│   │   ├── test_pep249.py
│   │   ├── test_pooling.py
│   │   ├── test_protocol.py
│   │   ├── test_setup.py
│   │   ├── test_style.py
│   │   └── test_utils.py
│   └── unittests.py
└── 好例子网_mysql-connector-python-2.2.2.zip

23 directories, 154 files