CHANGELOG.md
LICENSE
MANIFEST.in
README.md
pyproject.toml
setup.py
benchmarks/conftest.py
benchmarks/run_all_benchmarks.py
benchmarks/run_async_benchmarks.py
benchmarks/run_benchmarks.py
benchmarks/test_bench_do_1.py
benchmarks/test_bench_do_1000_params.py
benchmarks/test_bench_insert_batch.py
benchmarks/test_bench_select_1.py
benchmarks/test_bench_select_1000_rows.py
benchmarks/test_bench_select_100_cols.py
benchmarks/async/conftest.py
benchmarks/async/test_bench_async_do_1.py
benchmarks/async/test_bench_async_do_1000_params.py
benchmarks/async/test_bench_async_insert_batch.py
benchmarks/async/test_bench_async_select_1.py
benchmarks/async/test_bench_async_select_1000_rows.py
benchmarks/async/test_bench_async_select_100_cols.py
docs/requirements.txt
docs/examples/basic01.py
docs/source/api.rst
docs/source/bugs.rst
docs/source/conf.py
docs/source/connection.rst
docs/source/constants.rst
docs/source/cursor.rst
docs/source/faq.rst
docs/source/index.rst
docs/source/install.rst
docs/source/license.rst
docs/source/module.rst
docs/source/pool.rst
docs/source/pooling.rst
docs/source/usage.rst
mariadb/__init__.py
mariadb/async_connection.py
mariadb/async_cursor.py
mariadb/asyncio.py
mariadb/base_connection.py
mariadb/base_cursor.py
mariadb/dbapi20.py
mariadb/exceptions.py
mariadb/field.py
mariadb/impl_selector.py
mariadb/release_info.py
mariadb/sqlalchemy_mariadb_async.py
mariadb/sync_connection.py
mariadb/sync_cursor.py
mariadb.egg-info/PKG-INFO
mariadb.egg-info/SOURCES.txt
mariadb.egg-info/dependency_links.txt
mariadb.egg-info/entry_points.txt
mariadb.egg-info/requires.txt
mariadb.egg-info/top_level.txt
mariadb/constants/CLIENT.py
mariadb/constants/__init__.py
mariadb/impl/__init__.py
mariadb/impl/completion.py
mariadb/impl/configuration.py
mariadb/impl/connection_attributes.py
mariadb/impl/debug_utils.py
mariadb/impl/host_address.py
mariadb/impl/result.py
mariadb/impl/string_utils.py
mariadb/impl/client/__init__.py
mariadb/impl/client/async_client.py
mariadb/impl/client/base_client.py
mariadb/impl/client/context.py
mariadb/impl/client/exception_factory.py
mariadb/impl/client/sync_client.py
mariadb/impl/client/ssl/__init__.py
mariadb/impl/client/ssl/ssl_fingerprint_validator.py
mariadb/impl/client/ssl/ssl_utility.py
mariadb/impl/message/__init__.py
mariadb/impl/message/client_message.py
mariadb/impl/message/payload_reader.py
mariadb/impl/message/payload_writer.py
mariadb/impl/message/server_message.py
mariadb/impl/message/client/__init__.py
mariadb/impl/message/client/bulk_execute_packet.py
mariadb/impl/message/client/change_db_packet.py
mariadb/impl/message/client/change_user_packet.py
mariadb/impl/message/client/debug_packet.py
mariadb/impl/message/client/execute_packet.py
mariadb/impl/message/client/handshake_response.py
mariadb/impl/message/client/ping_packet.py
mariadb/impl/message/client/prepare_packet.py
mariadb/impl/message/client/query_packet.py
mariadb/impl/message/client/quit_packet.py
mariadb/impl/message/client/reset_connection_packet.py
mariadb/impl/message/client/ssl_request_packet.py
mariadb/impl/message/client/stmt_close_packet.py
mariadb/impl/message/server/__init__.py
mariadb/impl/message/server/column_definition_packet.py
mariadb/impl/message/server/eof_packet.py
mariadb/impl/message/server/error_packet.py
mariadb/impl/message/server/ok_packet.py
mariadb/impl/message/server/prepare_stmt_packet.py
mariadb/impl/plugin/__init__.py
mariadb/impl/plugin/authentication_plugin.py
mariadb/impl/plugin/authentication_plugin_factory.py
mariadb/impl/plugin/authentication_plugin_loader.py
mariadb/impl/plugin/authentication/__init__.py
mariadb/impl/plugin/authentication/caching_sha2_password_plugin.py
mariadb/impl/plugin/authentication/caching_sha2_password_plugin_factory.py
mariadb/impl/plugin/authentication/native_password_plugin.py
mariadb/impl/plugin/authentication/native_password_plugin_factory.py
mariadb/impl/plugin/authentication/parsec_password_plugin.py
mariadb/impl/plugin/authentication/parsec_password_plugin_factory.py
mariadb/impl/plugin/authentication/plugin_registry.py
mariadb_shared/__init__.py
mariadb_shared/async_connection_common.py
mariadb_shared/async_cursor_common.py
mariadb_shared/exceptions.py
mariadb_shared/sync_connection_common.py
mariadb_shared/sync_cursor_common.py
mariadb_shared/text_protocol.py
mariadb_shared/uri_parser.py
mariadb_shared/xid.py
mariadb_shared/constants/CAPABILITY.py
mariadb_shared/constants/CURSOR.py
mariadb_shared/constants/ERR.py
mariadb_shared/constants/EXT_FIELD_TYPE.py
mariadb_shared/constants/FIELD_FLAG.py
mariadb_shared/constants/FIELD_TYPE.py
mariadb_shared/constants/INDICATOR.py
mariadb_shared/constants/INFO.py
mariadb_shared/constants/SESSION_TRACK.py
mariadb_shared/constants/STATUS.py
mariadb_shared/constants/TPC_STATE.py
mariadb_shared/constants/__init__.py
tests/__init__.py
tests/base_test.py
tests/conftest.py
tests/integration/__init__.py
tests/integration/test_authentication.py
tests/integration/test_authentication_async.py
tests/integration/test_binary_option.py
tests/integration/test_cache.py
tests/integration/test_connection.py
tests/integration/test_connection_async.py
tests/integration/test_connection_attributes.py
tests/integration/test_connection_options.py
tests/integration/test_connection_options_async.py
tests/integration/test_converter.py
tests/integration/test_converter_async.py
tests/integration/test_cursor.py
tests/integration/test_cursor_async.py
tests/integration/test_cursor_features.py
tests/integration/test_cursor_mariadb.py
tests/integration/test_cursor_mysql.py
tests/integration/test_dbapi20.py
tests/integration/test_dbapi20_async.py
tests/integration/test_driver_parity.py
tests/integration/test_error_handling.py
tests/integration/test_error_handling_async.py
tests/integration/test_exception.py
tests/integration/test_exception_async.py
tests/integration/test_field_types.py
tests/integration/test_local_infile.py
tests/integration/test_local_infile_async.py
tests/integration/test_long_data.py
tests/integration/test_multi_cursor_unbuffered.py
tests/integration/test_multi_cursor_unbuffered_async.py
tests/integration/test_nondbapi.py
tests/integration/test_nondbapi_async.py
tests/integration/test_pooling.py
tests/integration/test_pooling_async.py
tests/integration/test_sha256_authentication.py
tests/integration/test_sha256_authentication_async.py
tests/integration/test_stmt_cache.py
tests/integration/test_streaming.py
tests/integration/test_streaming_async.py
tests/integration/test_unixsocket.py
tests/integration/test_unixsocket_async.py
tests/integration/test_uri_connection.py
tests/integration/test_uri_pool.py
tests/integration/test_version.py
tests/integration/test_xa.py
tests/integration/test_xa_async.py
tests/unit/test_create_pool.py
tests/unit/test_hex_dump.py
tests/unit/test_ssl_utility.py
tests/unit/test_uri_parser.py
tests/unit/test_xid.py