BatisX 2.2.0__tar.gz → 2.2.1__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.
- {batisx-2.2.0 → batisx-2.2.1}/PKG-INFO +3 -3
- {batisx-2.2.0 → batisx-2.2.1}/README.rst +1 -1
- {batisx-2.2.0 → batisx-2.2.1}/batisx.egg-info/PKG-INFO +3 -3
- {batisx-2.2.0 → batisx-2.2.1}/setup.py +2 -2
- {batisx-2.2.0 → batisx-2.2.1}/batisx/__init__.py +0 -0
- {batisx-2.2.0 → batisx-2.2.1}/batisx/db.py +0 -0
- {batisx-2.2.0 → batisx-2.2.1}/batisx/dbx.py +0 -0
- {batisx-2.2.0 → batisx-2.2.1}/batisx/log_support.py +0 -0
- {batisx-2.2.0 → batisx-2.2.1}/batisx/sql_id_exec.py +0 -0
- {batisx-2.2.0 → batisx-2.2.1}/batisx/sql_mapper.py +0 -0
- {batisx-2.2.0 → batisx-2.2.1}/batisx/sql_page_exec.py +0 -0
- {batisx-2.2.0 → batisx-2.2.1}/batisx.egg-info/SOURCES.txt +0 -0
- {batisx-2.2.0 → batisx-2.2.1}/batisx.egg-info/dependency_links.txt +0 -0
- {batisx-2.2.0 → batisx-2.2.1}/batisx.egg-info/not-zip-safe +0 -0
- {batisx-2.2.0 → batisx-2.2.1}/batisx.egg-info/requires.txt +0 -0
- {batisx-2.2.0 → batisx-2.2.1}/batisx.egg-info/top_level.txt +0 -0
- {batisx-2.2.0 → batisx-2.2.1}/setup.cfg +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: batisx
|
|
3
|
-
Version: 2.2.
|
|
3
|
+
Version: 2.2.1
|
|
4
4
|
Summary: A thread safe sql executor for Python like MyBatis with connection pool. It helps you automatically manage database connections and transactions. It also provides ORM operations for single tables.
|
|
5
|
-
Home-page: https://gitee.com/summry/
|
|
5
|
+
Home-page: https://gitee.com/summry/batisx
|
|
6
6
|
Author: summy
|
|
7
7
|
Author-email: xiazhongbiao@126.com
|
|
8
8
|
License: UNKNOWN
|
|
@@ -20,7 +20,7 @@ Create a mapper file in 'mapper' folder, you can named
|
|
|
20
20
|
.. code:: xml
|
|
21
21
|
|
|
22
22
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
23
|
-
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "https://gitee.com/summry/
|
|
23
|
+
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "https://gitee.com/summry/batisx/blob/master/dtd/mapper.dtd">
|
|
24
24
|
<mapper namespace="person">
|
|
25
25
|
<select id="select_all">
|
|
26
26
|
select id, name, age from person
|
|
@@ -7,7 +7,7 @@ Create a mapper file in 'mapper' folder, you can named
|
|
|
7
7
|
.. code:: xml
|
|
8
8
|
|
|
9
9
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
10
|
-
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "https://gitee.com/summry/
|
|
10
|
+
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "https://gitee.com/summry/batisx/blob/master/dtd/mapper.dtd">
|
|
11
11
|
<mapper namespace="person">
|
|
12
12
|
<select id="select_all">
|
|
13
13
|
select id, name, age from person
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: batisx
|
|
3
|
-
Version: 2.2.
|
|
3
|
+
Version: 2.2.1
|
|
4
4
|
Summary: A thread safe sql executor for Python like MyBatis with connection pool. It helps you automatically manage database connections and transactions. It also provides ORM operations for single tables.
|
|
5
|
-
Home-page: https://gitee.com/summry/
|
|
5
|
+
Home-page: https://gitee.com/summry/batisx
|
|
6
6
|
Author: summy
|
|
7
7
|
Author-email: xiazhongbiao@126.com
|
|
8
8
|
License: UNKNOWN
|
|
@@ -20,7 +20,7 @@ Create a mapper file in 'mapper' folder, you can named
|
|
|
20
20
|
.. code:: xml
|
|
21
21
|
|
|
22
22
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
23
|
-
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "https://gitee.com/summry/
|
|
23
|
+
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "https://gitee.com/summry/batisx/blob/master/dtd/mapper.dtd">
|
|
24
24
|
<mapper namespace="person">
|
|
25
25
|
<select id="select_all">
|
|
26
26
|
select id, name, age from person
|
|
@@ -20,8 +20,8 @@ setup(
|
|
|
20
20
|
install_requires=[
|
|
21
21
|
'mysqlx>=2.2.0',
|
|
22
22
|
],
|
|
23
|
-
version='2.2.
|
|
24
|
-
url='https://gitee.com/summry/
|
|
23
|
+
version='2.2.1',
|
|
24
|
+
url='https://gitee.com/summry/batisx',
|
|
25
25
|
author='summy',
|
|
26
26
|
author_email='xiazhongbiao@126.com',
|
|
27
27
|
keywords=['sql', 'MySQL', 'PostgreSQL', 'MyBatis', 'python'],
|
|
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
|