MySQLX 2.2.2__tar.gz → 2.2.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {mysqlx-2.2.2 → mysqlx-2.2.3}/PKG-INFO +1 -1
- {mysqlx-2.2.2 → mysqlx-2.2.3}/mysqlx/sql_support.py +1 -1
- {mysqlx-2.2.2 → mysqlx-2.2.3}/mysqlx.egg-info/PKG-INFO +1 -1
- {mysqlx-2.2.2 → mysqlx-2.2.3}/setup.py +1 -1
- {mysqlx-2.2.2 → mysqlx-2.2.3}/LICENSE +0 -0
- {mysqlx-2.2.2 → mysqlx-2.2.3}/README.rst +0 -0
- {mysqlx-2.2.2 → mysqlx-2.2.3}/mysqlx/__init__.py +0 -0
- {mysqlx-2.2.2 → mysqlx-2.2.3}/mysqlx/constant.py +0 -0
- {mysqlx-2.2.2 → mysqlx-2.2.3}/mysqlx/db.py +0 -0
- {mysqlx-2.2.2 → mysqlx-2.2.3}/mysqlx/dbx.py +0 -0
- {mysqlx-2.2.2 → mysqlx-2.2.3}/mysqlx/log_support.py +0 -0
- {mysqlx-2.2.2 → mysqlx-2.2.3}/mysqlx/sql_holder.py +0 -0
- {mysqlx-2.2.2 → mysqlx-2.2.3}/mysqlx/sql_id_exec.py +0 -0
- {mysqlx-2.2.2 → mysqlx-2.2.3}/mysqlx/sql_mapper.py +0 -0
- {mysqlx-2.2.2 → mysqlx-2.2.3}/mysqlx/sql_page_exec.py +0 -0
- {mysqlx-2.2.2 → mysqlx-2.2.3}/mysqlx/support.py +0 -0
- {mysqlx-2.2.2 → mysqlx-2.2.3}/mysqlx.egg-info/SOURCES.txt +0 -0
- {mysqlx-2.2.2 → mysqlx-2.2.3}/mysqlx.egg-info/dependency_links.txt +0 -0
- {mysqlx-2.2.2 → mysqlx-2.2.3}/mysqlx.egg-info/not-zip-safe +0 -0
- {mysqlx-2.2.2 → mysqlx-2.2.3}/mysqlx.egg-info/requires.txt +0 -0
- {mysqlx-2.2.2 → mysqlx-2.2.3}/mysqlx.egg-info/top_level.txt +0 -0
- {mysqlx-2.2.2 → mysqlx-2.2.3}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mysqlx
|
|
3
|
-
Version: 2.2.
|
|
3
|
+
Version: 2.2.3
|
|
4
4
|
Summary: A thread safe sql executor for MySQL like MyBatis with connection pool. It helps you automatically manage database connections and transactions. It also provides ORM operations for single tables.
|
|
5
5
|
Home-page: https://gitee.com/summry/mysqlx
|
|
6
6
|
Author: summy
|
|
@@ -4,7 +4,7 @@ from functools import lru_cache
|
|
|
4
4
|
from .log_support import page_log
|
|
5
5
|
from .constant import DYNAMIC_REGEX, SQL_CACHE_SIZE
|
|
6
6
|
|
|
7
|
-
from sqlexecx.sql_support import get_named_sql_args, is_mapping, get_mapping_sql_args, try_mapping
|
|
7
|
+
from sqlexecx.sql_support import get_named_sql_args, is_mapping, get_mapping_sql_args, try_mapping, get_batch_args
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
def simple_sql(sql: str, *args, **kwargs):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mysqlx
|
|
3
|
-
Version: 2.2.
|
|
3
|
+
Version: 2.2.3
|
|
4
4
|
Summary: A thread safe sql executor for MySQL like MyBatis with connection pool. It helps you automatically manage database connections and transactions. It also provides ORM operations for single tables.
|
|
5
5
|
Home-page: https://gitee.com/summry/mysqlx
|
|
6
6
|
Author: summy
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|