MySQLX 2.2.6__tar.gz → 2.2.7__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
- Name: mysqlx
3
- Version: 2.2.6
2
+ Name: MySQLX
3
+ Version: 2.2.7
4
4
  Summary: A thread safe sql executor for MySQL like MyBatis with connection pool. It helps you automatically manage database connections and transactions.
5
5
  Home-page: https://gitee.com/summry/mysqlx
6
6
  Author: summy
@@ -115,10 +115,10 @@ Usage Sample
115
115
  # (3, 'zhangsan', 15)
116
116
 
117
117
  # you can direct execute sql with db
118
- effected_rowcount = db.table('person').insert(name='zhangsan', age=15)
118
+ effected_rowcount = db.table('user').insert(name='zhangsan', age=15)
119
119
  # 1
120
120
 
121
- primary_key = db.table('person').save(name='lisi', age=26)
121
+ primary_key = db.table('user').save(name='lisi', age=26)
122
122
  # 4
123
123
 
124
124
  effected_rowcount = db.insert(table='user', name='wangwu', age=38)
@@ -1,6 +1,12 @@
1
1
  LICENSE
2
2
  README.rst
3
3
  setup.py
4
+ MySQLX.egg-info/PKG-INFO
5
+ MySQLX.egg-info/SOURCES.txt
6
+ MySQLX.egg-info/dependency_links.txt
7
+ MySQLX.egg-info/not-zip-safe
8
+ MySQLX.egg-info/requires.txt
9
+ MySQLX.egg-info/top_level.txt
4
10
  mysqlx/__init__.py
5
11
  mysqlx/constant.py
6
12
  mysqlx/db.py
@@ -11,10 +17,4 @@ mysqlx/sql_id_exec.py
11
17
  mysqlx/sql_mapper.py
12
18
  mysqlx/sql_page_exec.py
13
19
  mysqlx/sql_support.py
14
- mysqlx/support.py
15
- mysqlx.egg-info/PKG-INFO
16
- mysqlx.egg-info/SOURCES.txt
17
- mysqlx.egg-info/dependency_links.txt
18
- mysqlx.egg-info/not-zip-safe
19
- mysqlx.egg-info/requires.txt
20
- mysqlx.egg-info/top_level.txt
20
+ mysqlx/support.py
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
- Name: mysqlx
3
- Version: 2.2.6
2
+ Name: MySQLX
3
+ Version: 2.2.7
4
4
  Summary: A thread safe sql executor for MySQL like MyBatis with connection pool. It helps you automatically manage database connections and transactions.
5
5
  Home-page: https://gitee.com/summry/mysqlx
6
6
  Author: summy
@@ -115,10 +115,10 @@ Usage Sample
115
115
  # (3, 'zhangsan', 15)
116
116
 
117
117
  # you can direct execute sql with db
118
- effected_rowcount = db.table('person').insert(name='zhangsan', age=15)
118
+ effected_rowcount = db.table('user').insert(name='zhangsan', age=15)
119
119
  # 1
120
120
 
121
- primary_key = db.table('person').save(name='lisi', age=26)
121
+ primary_key = db.table('user').save(name='lisi', age=26)
122
122
  # 4
123
123
 
124
124
  effected_rowcount = db.insert(table='user', name='wangwu', age=38)
@@ -101,10 +101,10 @@ Usage Sample
101
101
  # (3, 'zhangsan', 15)
102
102
 
103
103
  # you can direct execute sql with db
104
- effected_rowcount = db.table('person').insert(name='zhangsan', age=15)
104
+ effected_rowcount = db.table('user').insert(name='zhangsan', age=15)
105
105
  # 1
106
106
 
107
- primary_key = db.table('person').save(name='lisi', age=26)
107
+ primary_key = db.table('user').save(name='lisi', age=26)
108
108
  # 4
109
109
 
110
110
  effected_rowcount = db.insert(table='user', name='wangwu', age=38)
@@ -12,7 +12,7 @@ def read(rel_path: str) -> str:
12
12
  long_description = read("README.rst")
13
13
 
14
14
  setup(
15
- name='mysqlx',
15
+ name='MySQLX',
16
16
  packages=['mysqlx'],
17
17
  description="A thread safe sql executor for MySQL like MyBatis with connection pool. It helps you automatically manage database connections and transactions.",
18
18
  long_description=long_description,
@@ -21,7 +21,7 @@ setup(
21
21
  'Jinja2>=2.7.0',
22
22
  'sqlexecx>=2.1.4',
23
23
  ],
24
- version='2.2.6',
24
+ version='2.2.7',
25
25
  url='https://gitee.com/summry/mysqlx',
26
26
  author='summy',
27
27
  author_email='xiazhongbiao@126.com',
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