BatisX 2.2.2__tar.gz → 2.2.4__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.2/batisx.egg-info → BatisX-2.2.4/BatisX.egg-info}/PKG-INFO +29 -7
- BatisX-2.2.4/BatisX.egg-info/SOURCES.txt +16 -0
- BatisX-2.2.4/BatisX.egg-info/requires.txt +1 -0
- BatisX-2.2.4/LICENSE +201 -0
- batisx-2.2.2/README.rst → BatisX-2.2.4/PKG-INFO +41 -4
- batisx-2.2.2/PKG-INFO → BatisX-2.2.4/README.rst +25 -19
- {batisx-2.2.2 → BatisX-2.2.4}/batisx/__init__.py +2 -4
- {batisx-2.2.2 → BatisX-2.2.4}/batisx/db.py +24 -5
- BatisX-2.2.4/batisx/sql_page_exec.py +28 -0
- {batisx-2.2.2 → BatisX-2.2.4}/setup.py +4 -4
- batisx-2.2.2/batisx/sql_page_exec.py +0 -12
- batisx-2.2.2/batisx.egg-info/SOURCES.txt +0 -15
- batisx-2.2.2/batisx.egg-info/requires.txt +0 -1
- {batisx-2.2.2/batisx.egg-info → BatisX-2.2.4/BatisX.egg-info}/dependency_links.txt +0 -0
- {batisx-2.2.2/batisx.egg-info → BatisX-2.2.4/BatisX.egg-info}/not-zip-safe +0 -0
- {batisx-2.2.2/batisx.egg-info → BatisX-2.2.4/BatisX.egg-info}/top_level.txt +0 -0
- {batisx-2.2.2 → BatisX-2.2.4}/batisx/dbx.py +0 -0
- {batisx-2.2.2 → BatisX-2.2.4}/batisx/log_support.py +0 -0
- {batisx-2.2.2 → BatisX-2.2.4}/batisx/sql_id_exec.py +0 -0
- {batisx-2.2.2 → BatisX-2.2.4}/batisx/sql_mapper.py +0 -0
- {batisx-2.2.2 → BatisX-2.2.4}/setup.cfg +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
|
-
Name:
|
|
3
|
-
Version: 2.2.
|
|
4
|
-
Summary: A thread safe sql executor for Python like MyBatis with connection pool. It helps you automatically manage database connections and transactions.
|
|
2
|
+
Name: BatisX
|
|
3
|
+
Version: 2.2.4
|
|
4
|
+
Summary: A easy thread safe sql executor for Python like MyBatis with connection pool. It helps you automatically manage database connections and transactions. Support MySQL, PostgreSQL, SQLite etc.
|
|
5
5
|
Home-page: https://gitee.com/summry/batisx
|
|
6
6
|
Author: summy
|
|
7
7
|
Author-email: xiazhongbiao@126.com
|
|
@@ -10,6 +10,7 @@ Keywords: sql,MySQL,PostgreSQL,MyBatis,python
|
|
|
10
10
|
Platform: UNKNOWN
|
|
11
11
|
Requires-Python: >=3.5
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
|
+
License-File: LICENSE
|
|
13
14
|
|
|
14
15
|
Mapper file
|
|
15
16
|
'''''''''''
|
|
@@ -115,7 +116,28 @@ Usage Sample
|
|
|
115
116
|
# (3, 'zhangsan', 15)
|
|
116
117
|
|
|
117
118
|
# you can direct execute sql with db
|
|
118
|
-
effected_rowcount = db.
|
|
119
|
+
effected_rowcount = db.table('person').insert(name='zhangsan', age=15)
|
|
120
|
+
# 1
|
|
121
|
+
|
|
122
|
+
primary_key = db.table('person').save(name='lisi', age=26)
|
|
123
|
+
# 4
|
|
124
|
+
|
|
125
|
+
effected_rowcount = db.insert(table='person', name='wangwu', age=38)
|
|
126
|
+
# 1
|
|
127
|
+
|
|
128
|
+
users = db.table('person').columns('id, name, age').select()
|
|
129
|
+
# result:
|
|
130
|
+
# (3, 'zhangsan', 15)
|
|
131
|
+
# (4, 'lisi', 26)
|
|
132
|
+
# (5, 'wangwu', 38)
|
|
133
|
+
|
|
134
|
+
users = db.table('person').columns('id, name, age').where(name='zhangsan').query()
|
|
135
|
+
# result:
|
|
136
|
+
# [{'id': 3, 'name': 'zhangsan', 'age': 15}]
|
|
137
|
+
|
|
138
|
+
users = db.table('person').columns('id, name, age').where(name__eq='zhangsan').query()
|
|
139
|
+
# result:
|
|
140
|
+
# [{'id': 3, 'name': 'zhangsan', 'age': 15}]
|
|
119
141
|
|
|
120
142
|
persons = db.select('select id, name, age from person')
|
|
121
143
|
# result:
|
|
@@ -142,16 +164,16 @@ Transaction
|
|
|
142
164
|
|
|
143
165
|
.. code:: python
|
|
144
166
|
|
|
145
|
-
from batisx import
|
|
167
|
+
from batisx import trans
|
|
146
168
|
|
|
147
|
-
@
|
|
169
|
+
@trans
|
|
148
170
|
def test_transaction():
|
|
149
171
|
insert_func(....)
|
|
150
172
|
update_func(....)
|
|
151
173
|
|
|
152
174
|
|
|
153
175
|
def test_transaction2():
|
|
154
|
-
with
|
|
176
|
+
with trans():
|
|
155
177
|
insert_func(....)
|
|
156
178
|
update_func(....)
|
|
157
179
|
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.rst
|
|
3
|
+
setup.py
|
|
4
|
+
BatisX.egg-info/PKG-INFO
|
|
5
|
+
BatisX.egg-info/SOURCES.txt
|
|
6
|
+
BatisX.egg-info/dependency_links.txt
|
|
7
|
+
BatisX.egg-info/not-zip-safe
|
|
8
|
+
BatisX.egg-info/requires.txt
|
|
9
|
+
BatisX.egg-info/top_level.txt
|
|
10
|
+
batisx/__init__.py
|
|
11
|
+
batisx/db.py
|
|
12
|
+
batisx/dbx.py
|
|
13
|
+
batisx/log_support.py
|
|
14
|
+
batisx/sql_id_exec.py
|
|
15
|
+
batisx/sql_mapper.py
|
|
16
|
+
batisx/sql_page_exec.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
mysqlx>=2.2.8
|
BatisX-2.2.4/LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: BatisX
|
|
3
|
+
Version: 2.2.4
|
|
4
|
+
Summary: A easy thread safe sql executor for Python like MyBatis with connection pool. It helps you automatically manage database connections and transactions. Support MySQL, PostgreSQL, SQLite etc.
|
|
5
|
+
Home-page: https://gitee.com/summry/batisx
|
|
6
|
+
Author: summy
|
|
7
|
+
Author-email: xiazhongbiao@126.com
|
|
8
|
+
License: UNKNOWN
|
|
9
|
+
Keywords: sql,MySQL,PostgreSQL,MyBatis,python
|
|
10
|
+
Platform: UNKNOWN
|
|
11
|
+
Requires-Python: >=3.5
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
License-File: LICENSE
|
|
14
|
+
|
|
1
15
|
Mapper file
|
|
2
16
|
'''''''''''
|
|
3
17
|
|
|
@@ -102,7 +116,28 @@ Usage Sample
|
|
|
102
116
|
# (3, 'zhangsan', 15)
|
|
103
117
|
|
|
104
118
|
# you can direct execute sql with db
|
|
105
|
-
effected_rowcount = db.
|
|
119
|
+
effected_rowcount = db.table('person').insert(name='zhangsan', age=15)
|
|
120
|
+
# 1
|
|
121
|
+
|
|
122
|
+
primary_key = db.table('person').save(name='lisi', age=26)
|
|
123
|
+
# 4
|
|
124
|
+
|
|
125
|
+
effected_rowcount = db.insert(table='person', name='wangwu', age=38)
|
|
126
|
+
# 1
|
|
127
|
+
|
|
128
|
+
users = db.table('person').columns('id, name, age').select()
|
|
129
|
+
# result:
|
|
130
|
+
# (3, 'zhangsan', 15)
|
|
131
|
+
# (4, 'lisi', 26)
|
|
132
|
+
# (5, 'wangwu', 38)
|
|
133
|
+
|
|
134
|
+
users = db.table('person').columns('id, name, age').where(name='zhangsan').query()
|
|
135
|
+
# result:
|
|
136
|
+
# [{'id': 3, 'name': 'zhangsan', 'age': 15}]
|
|
137
|
+
|
|
138
|
+
users = db.table('person').columns('id, name, age').where(name__eq='zhangsan').query()
|
|
139
|
+
# result:
|
|
140
|
+
# [{'id': 3, 'name': 'zhangsan', 'age': 15}]
|
|
106
141
|
|
|
107
142
|
persons = db.select('select id, name, age from person')
|
|
108
143
|
# result:
|
|
@@ -129,16 +164,16 @@ Transaction
|
|
|
129
164
|
|
|
130
165
|
.. code:: python
|
|
131
166
|
|
|
132
|
-
from batisx import
|
|
167
|
+
from batisx import trans
|
|
133
168
|
|
|
134
|
-
@
|
|
169
|
+
@trans
|
|
135
170
|
def test_transaction():
|
|
136
171
|
insert_func(....)
|
|
137
172
|
update_func(....)
|
|
138
173
|
|
|
139
174
|
|
|
140
175
|
def test_transaction2():
|
|
141
|
-
with
|
|
176
|
+
with trans():
|
|
142
177
|
insert_func(....)
|
|
143
178
|
update_func(....)
|
|
144
179
|
|
|
@@ -148,3 +183,5 @@ If you want to operate MySQL database, may be you need MySqlx: https://pypi.org/
|
|
|
148
183
|
If you want to operate PostgreSQL database, may be you need MySqlx: https://pypi.org/project/pgsqlx
|
|
149
184
|
|
|
150
185
|
If you just wanted a simple sql executor, may be you need sqlx-exec: https://pypi.org/project/sqlexecx
|
|
186
|
+
|
|
187
|
+
|
|
@@ -1,16 +1,3 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: batisx
|
|
3
|
-
Version: 2.2.2
|
|
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/batisx
|
|
6
|
-
Author: summy
|
|
7
|
-
Author-email: xiazhongbiao@126.com
|
|
8
|
-
License: UNKNOWN
|
|
9
|
-
Keywords: sql,MySQL,PostgreSQL,MyBatis,python
|
|
10
|
-
Platform: UNKNOWN
|
|
11
|
-
Requires-Python: >=3.5
|
|
12
|
-
Description-Content-Type: text/markdown
|
|
13
|
-
|
|
14
1
|
Mapper file
|
|
15
2
|
'''''''''''
|
|
16
3
|
|
|
@@ -115,7 +102,28 @@ Usage Sample
|
|
|
115
102
|
# (3, 'zhangsan', 15)
|
|
116
103
|
|
|
117
104
|
# you can direct execute sql with db
|
|
118
|
-
effected_rowcount = db.
|
|
105
|
+
effected_rowcount = db.table('person').insert(name='zhangsan', age=15)
|
|
106
|
+
# 1
|
|
107
|
+
|
|
108
|
+
primary_key = db.table('person').save(name='lisi', age=26)
|
|
109
|
+
# 4
|
|
110
|
+
|
|
111
|
+
effected_rowcount = db.insert(table='person', name='wangwu', age=38)
|
|
112
|
+
# 1
|
|
113
|
+
|
|
114
|
+
users = db.table('person').columns('id, name, age').select()
|
|
115
|
+
# result:
|
|
116
|
+
# (3, 'zhangsan', 15)
|
|
117
|
+
# (4, 'lisi', 26)
|
|
118
|
+
# (5, 'wangwu', 38)
|
|
119
|
+
|
|
120
|
+
users = db.table('person').columns('id, name, age').where(name='zhangsan').query()
|
|
121
|
+
# result:
|
|
122
|
+
# [{'id': 3, 'name': 'zhangsan', 'age': 15}]
|
|
123
|
+
|
|
124
|
+
users = db.table('person').columns('id, name, age').where(name__eq='zhangsan').query()
|
|
125
|
+
# result:
|
|
126
|
+
# [{'id': 3, 'name': 'zhangsan', 'age': 15}]
|
|
119
127
|
|
|
120
128
|
persons = db.select('select id, name, age from person')
|
|
121
129
|
# result:
|
|
@@ -142,16 +150,16 @@ Transaction
|
|
|
142
150
|
|
|
143
151
|
.. code:: python
|
|
144
152
|
|
|
145
|
-
from batisx import
|
|
153
|
+
from batisx import trans
|
|
146
154
|
|
|
147
|
-
@
|
|
155
|
+
@trans
|
|
148
156
|
def test_transaction():
|
|
149
157
|
insert_func(....)
|
|
150
158
|
update_func(....)
|
|
151
159
|
|
|
152
160
|
|
|
153
161
|
def test_transaction2():
|
|
154
|
-
with
|
|
162
|
+
with trans():
|
|
155
163
|
insert_func(....)
|
|
156
164
|
update_func(....)
|
|
157
165
|
|
|
@@ -161,5 +169,3 @@ If you want to operate MySQL database, may be you need MySqlx: https://pypi.org/
|
|
|
161
169
|
If you want to operate PostgreSQL database, may be you need MySqlx: https://pypi.org/project/pgsqlx
|
|
162
170
|
|
|
163
171
|
If you just wanted a simple sql executor, may be you need sqlx-exec: https://pypi.org/project/sqlexecx
|
|
164
|
-
|
|
165
|
-
|
|
@@ -9,11 +9,18 @@ from mysqlx.db import insert, save, execute, batch_insert, batch_execute, get, q
|
|
|
9
9
|
def save_sql(sql: str, *args, **kwargs):
|
|
10
10
|
"""
|
|
11
11
|
Insert data into table, return primary key.
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
12
|
+
|
|
13
|
+
Examples
|
|
14
|
+
--------
|
|
15
|
+
>>> import sqlexecx as db
|
|
16
|
+
>>> sql = 'INSERT INTO person(name, age) VALUES(?, ?)'
|
|
17
|
+
>>> db.save_sql(sql, '张三', 20)
|
|
18
|
+
3
|
|
19
|
+
>>> sql = 'INSERT INTO person(name, age) VALUES(:name, :age)'
|
|
20
|
+
>>> db.save_sql(sql, name='张三', age=20)
|
|
21
|
+
3
|
|
16
22
|
"""
|
|
23
|
+
|
|
17
24
|
sql, args = sql_support.try_dynamic_sql('batisx.db.save_sql', sql, *args, **kwargs)
|
|
18
25
|
return do_save_sql(sql, *args)
|
|
19
26
|
|
|
@@ -21,11 +28,23 @@ def save_sql(sql: str, *args, **kwargs):
|
|
|
21
28
|
def save_sql_select_key(select_key: str, sql: str, *args, **kwargs):
|
|
22
29
|
"""
|
|
23
30
|
Insert data into table, return primary key.
|
|
31
|
+
|
|
24
32
|
:param select_key: sql for select primary key
|
|
25
33
|
:param sql: SQL
|
|
26
|
-
:param args:
|
|
27
34
|
:return: Primary key
|
|
35
|
+
|
|
36
|
+
Examples
|
|
37
|
+
--------
|
|
38
|
+
>>> import sqlexecx as db
|
|
39
|
+
>>> select_key = 'SELECT LAST_INSERT_ID()'
|
|
40
|
+
>>> sql = 'INSERT INTO person(name, age) VALUES(?, ?)'
|
|
41
|
+
>>> db.save_sql_select_key(select_key, sql, '张三', 20)
|
|
42
|
+
3
|
|
43
|
+
>>> sql = 'INSERT INTO person(name, age) VALUES(:name, :age)'
|
|
44
|
+
>>> db.save_sql_select_key(select_key, sql, name='张三', age=20)
|
|
45
|
+
3
|
|
28
46
|
"""
|
|
47
|
+
|
|
29
48
|
sql, args = sql_support.try_dynamic_sql('batisx.db.save_sql', sql, *args, **kwargs)
|
|
30
49
|
return do_save_sql_select_key(select_key, sql, *args)
|
|
31
50
|
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
from . import db
|
|
2
|
+
from sqlexecx.sql_exec import SqlExec
|
|
3
|
+
from sqlexecx.page_exec import PageExec
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
def sql(sql: str):
|
|
7
|
+
"""
|
|
8
|
+
Get a SqlExec instance
|
|
9
|
+
|
|
10
|
+
Examples
|
|
11
|
+
--------
|
|
12
|
+
>>> from batisx import db
|
|
13
|
+
>>> db.sql('SELECT id, name, age FROM person')
|
|
14
|
+
"""
|
|
15
|
+
assert sql, "Parameter 'sql' must not be none"
|
|
16
|
+
return SqlExec(db, sql)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
def page(page_num: int, page_size: int):
|
|
20
|
+
"""
|
|
21
|
+
Get a PageExec instance
|
|
22
|
+
|
|
23
|
+
Examples
|
|
24
|
+
--------
|
|
25
|
+
>>> from batisx import db
|
|
26
|
+
>>> db.page(1, 10)
|
|
27
|
+
"""
|
|
28
|
+
return PageExec(db, page_num, page_size)
|
|
@@ -12,15 +12,15 @@ def read(rel_path: str) -> str:
|
|
|
12
12
|
long_description = read("README.rst")
|
|
13
13
|
|
|
14
14
|
setup(
|
|
15
|
-
name='
|
|
15
|
+
name='BatisX',
|
|
16
16
|
packages=['batisx'],
|
|
17
|
-
description="A thread safe sql executor for Python like MyBatis with connection pool. It helps you automatically manage database connections and transactions.
|
|
17
|
+
description="A easy thread safe sql executor for Python like MyBatis with connection pool. It helps you automatically manage database connections and transactions. Support MySQL, PostgreSQL, SQLite etc.",
|
|
18
18
|
long_description=long_description,
|
|
19
19
|
long_description_content_type='text/markdown',
|
|
20
20
|
install_requires=[
|
|
21
|
-
'mysqlx>=2.2.
|
|
21
|
+
'mysqlx>=2.2.8',
|
|
22
22
|
],
|
|
23
|
-
version='2.2.
|
|
23
|
+
version='2.2.4',
|
|
24
24
|
url='https://gitee.com/summry/batisx',
|
|
25
25
|
author='summy',
|
|
26
26
|
author_email='xiazhongbiao@126.com',
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
from . import db
|
|
2
|
-
from sqlexecx.sql_exec import SqlExec
|
|
3
|
-
from sqlexecx.page_exec import PageExec
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
def sql(sql: str) :
|
|
7
|
-
assert sql, "Parameter 'sql' must not be none"
|
|
8
|
-
return SqlExec(db, sql)
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
def page(page_num: int, page_size: int) :
|
|
12
|
-
return PageExec(db, page_num, page_size)
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
README.rst
|
|
2
|
-
setup.py
|
|
3
|
-
batisx/__init__.py
|
|
4
|
-
batisx/db.py
|
|
5
|
-
batisx/dbx.py
|
|
6
|
-
batisx/log_support.py
|
|
7
|
-
batisx/sql_id_exec.py
|
|
8
|
-
batisx/sql_mapper.py
|
|
9
|
-
batisx/sql_page_exec.py
|
|
10
|
-
batisx.egg-info/PKG-INFO
|
|
11
|
-
batisx.egg-info/SOURCES.txt
|
|
12
|
-
batisx.egg-info/dependency_links.txt
|
|
13
|
-
batisx.egg-info/not-zip-safe
|
|
14
|
-
batisx.egg-info/requires.txt
|
|
15
|
-
batisx.egg-info/top_level.txt
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
mysqlx>=2.2.2
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|