基本信息
源码名称:mysql-connector-python-2.1.6.zip
源码大小:11.33M
文件格式:.zip
开发语言:Python
更新时间:2023-07-13
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
mysql-connector-python-2.1.6.zip
mysql-connector-python-2.1.6.zip, 解压后cd到安装目录,python setup.py install 即可, python命令行下 import mysql.connector 检验是否安装成功
文件清单
└── mysql-connector-python-2.1.6
├── CHANGES.txt
├── docs
│ └── README_DOCS.txt
├── examples
│ ├── dates.py
│ ├── engines.py
│ ├── __init__.py
│ ├── inserts.py
│ ├── microseconds.py
│ ├── multi_resultsets.py
│ ├── mysql_warnings.py
│ ├── prepared_statements.py
│ ├── transaction.py
│ ├── unicode.py
│ └── warnings.py
├── lib
│ ├── cpy_distutils.py
│ ├── __init__.py
│ └── mysql
│ ├── connector
│ │ ├── abstracts.py
│ │ ├── authentication.py
│ │ ├── catch23.py
│ │ ├── charsets.py
│ │ ├── connection_cext.py
│ │ ├── connection.py
│ │ ├── constants.py
│ │ ├── conversion.py
│ │ ├── cursor_cext.py
│ │ ├── cursor.py
│ │ ├── custom_types.py
│ │ ├── dbapi.py
│ │ ├── django
│ │ │ ├── base.py
│ │ │ ├── client.py
│ │ │ ├── compiler.py
│ │ │ ├── creation.py
│ │ │ ├── features.py
│ │ │ ├── __init__.py
│ │ │ ├── introspection.py
│ │ │ ├── operations.py
│ │ │ ├── schema.py
│ │ │ └── validation.py
│ │ ├── errorcode.py
│ │ ├── errors.py
│ │ ├── fabric
│ │ │ ├── balancing.py
│ │ │ ├── caching.py
│ │ │ ├── connection.py
│ │ │ └── __init__.py
│ │ ├── __init__.py
│ │ ├── locales
│ │ │ ├── eng
│ │ │ │ ├── client_error.py
│ │ │ │ └── __init__.py
│ │ │ └── __init__.py
│ │ ├── network.py
│ │ ├── optionfiles.py
│ │ ├── pooling.py
│ │ ├── protocol.py
│ │ ├── utils.py
│ │ └── version.py
│ └── __init__.py
├── LICENSE.txt
├── MANIFEST.in
├── PKG-INFO
├── README.txt
├── setupinfo.py
├── setup.py
├── src
│ ├── exceptions.c
│ ├── force_cpp_linkage.cc
│ ├── include
│ │ ├── catch23.h
│ │ ├── exceptions.h
│ │ ├── mysql_capi_conversion.h
│ │ ├── mysql_capi.h
│ │ └── mysql_connector.h
│ ├── mysql_capi.c
│ ├── mysql_capi_conversion.c
│ └── mysql_connector.c
├── tests
│ ├── 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_expired_server_cert.pem
│ │ ├── tests_expired_server_key.pem
│ │ ├── tests_server_cert.pem
│ │ └── tests_server_key.pem
│ ├── __init__.py
│ ├── 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_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
19 directories, 121 files
mysql-connector-python-2.1.6.zip
mysql-connector-python-2.1.6.zip, 解压后cd到安装目录,python setup.py install 即可, python命令行下 import mysql.connector 检验是否安装成功
文件清单
└── mysql-connector-python-2.1.6
├── CHANGES.txt
├── docs
│ └── README_DOCS.txt
├── examples
│ ├── dates.py
│ ├── engines.py
│ ├── __init__.py
│ ├── inserts.py
│ ├── microseconds.py
│ ├── multi_resultsets.py
│ ├── mysql_warnings.py
│ ├── prepared_statements.py
│ ├── transaction.py
│ ├── unicode.py
│ └── warnings.py
├── lib
│ ├── cpy_distutils.py
│ ├── __init__.py
│ └── mysql
│ ├── connector
│ │ ├── abstracts.py
│ │ ├── authentication.py
│ │ ├── catch23.py
│ │ ├── charsets.py
│ │ ├── connection_cext.py
│ │ ├── connection.py
│ │ ├── constants.py
│ │ ├── conversion.py
│ │ ├── cursor_cext.py
│ │ ├── cursor.py
│ │ ├── custom_types.py
│ │ ├── dbapi.py
│ │ ├── django
│ │ │ ├── base.py
│ │ │ ├── client.py
│ │ │ ├── compiler.py
│ │ │ ├── creation.py
│ │ │ ├── features.py
│ │ │ ├── __init__.py
│ │ │ ├── introspection.py
│ │ │ ├── operations.py
│ │ │ ├── schema.py
│ │ │ └── validation.py
│ │ ├── errorcode.py
│ │ ├── errors.py
│ │ ├── fabric
│ │ │ ├── balancing.py
│ │ │ ├── caching.py
│ │ │ ├── connection.py
│ │ │ └── __init__.py
│ │ ├── __init__.py
│ │ ├── locales
│ │ │ ├── eng
│ │ │ │ ├── client_error.py
│ │ │ │ └── __init__.py
│ │ │ └── __init__.py
│ │ ├── network.py
│ │ ├── optionfiles.py
│ │ ├── pooling.py
│ │ ├── protocol.py
│ │ ├── utils.py
│ │ └── version.py
│ └── __init__.py
├── LICENSE.txt
├── MANIFEST.in
├── PKG-INFO
├── README.txt
├── setupinfo.py
├── setup.py
├── src
│ ├── exceptions.c
│ ├── force_cpp_linkage.cc
│ ├── include
│ │ ├── catch23.h
│ │ ├── exceptions.h
│ │ ├── mysql_capi_conversion.h
│ │ ├── mysql_capi.h
│ │ └── mysql_connector.h
│ ├── mysql_capi.c
│ ├── mysql_capi_conversion.c
│ └── mysql_connector.c
├── tests
│ ├── 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_expired_server_cert.pem
│ │ ├── tests_expired_server_key.pem
│ │ ├── tests_server_cert.pem
│ │ └── tests_server_key.pem
│ ├── __init__.py
│ ├── 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_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
19 directories, 121 files