reydb 1.1.24__py3-none-any.whl → 1.1.26__py3-none-any.whl
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.
- reydb/rbuild.py +2 -1
- reydb/rconn.py +1 -0
- reydb/rdb.py +2 -0
- reydb/rexec.py +2 -1
- reydb/rfile.py +2 -3
- reydb/rinfo.py +2 -1
- reydb/rparam.py +2 -1
- {reydb-1.1.24.dist-info → reydb-1.1.26.dist-info}/METADATA +1 -1
- reydb-1.1.26.dist-info/RECORD +14 -0
- reydb-1.1.24.dist-info/RECORD +0 -14
- {reydb-1.1.24.dist-info → reydb-1.1.26.dist-info}/WHEEL +0 -0
- {reydb-1.1.24.dist-info → reydb-1.1.26.dist-info}/licenses/LICENSE +0 -0
reydb/rbuild.py
CHANGED
reydb/rconn.py
CHANGED
reydb/rdb.py
CHANGED
@@ -753,6 +753,7 @@ class Database(BaseDatabase):
|
|
753
753
|
syntax = [
|
754
754
|
search('[a-zA-Z]+', sql_part).upper()
|
755
755
|
for sql_part in sql.split(';')
|
756
|
+
if sql_part != ''
|
756
757
|
]
|
757
758
|
|
758
759
|
return syntax
|
@@ -819,6 +820,7 @@ class Database(BaseDatabase):
|
|
819
820
|
sqls = [
|
820
821
|
sql_part.strip()
|
821
822
|
for sql_part in sql.text.split(';')
|
823
|
+
if sql_part != ''
|
822
824
|
]
|
823
825
|
if data == []:
|
824
826
|
echo(report_info, *sqls, title='SQL')
|
reydb/rexec.py
CHANGED
reydb/rfile.py
CHANGED
@@ -15,7 +15,8 @@ from reykit.rbase import throw
|
|
15
15
|
from reykit.ros import File, Folder, get_md5
|
16
16
|
|
17
17
|
from .rbase import BaseDatabase
|
18
|
-
from .rconn import
|
18
|
+
from .rconn import DBConnection
|
19
|
+
from .rdb import Database
|
19
20
|
|
20
21
|
|
21
22
|
__all__ = (
|
@@ -105,13 +106,11 @@ class DBFile(BaseDatabase):
|
|
105
106
|
{
|
106
107
|
'name': 'name',
|
107
108
|
'type': 'varchar(260)',
|
108
|
-
'constraint': 'DEFAULT NULL',
|
109
109
|
'comment': 'File name.'
|
110
110
|
},
|
111
111
|
{
|
112
112
|
'name': 'note',
|
113
113
|
'type': 'varchar(500)',
|
114
|
-
'constraint': 'DEFAULT NULL',
|
115
114
|
'comment': 'File note.'
|
116
115
|
}
|
117
116
|
],
|
reydb/rinfo.py
CHANGED
reydb/rparam.py
CHANGED
@@ -0,0 +1,14 @@
|
|
1
|
+
reydb/__init__.py,sha256=UetBDQylwFTWiPMKF1ZPW45A6mwYWWSYneTesl4xKBY,474
|
2
|
+
reydb/rall.py,sha256=i6-ph2cahhTTF17DjUYf6KX3DNxhEvy6iedlSeF4ibI,341
|
3
|
+
reydb/rbase.py,sha256=HMhxr7_TyzAusrv5dcc1hf3PmxGWj7m63kKcr5Ikbf4,312
|
4
|
+
reydb/rbuild.py,sha256=LiYGOMZFnZi-aVGfWpKT2aEHks4ygbEubweB0-fczfQ,32344
|
5
|
+
reydb/rconn.py,sha256=XmT4IizNYxCNi1zl88HCgHwkLcWMRWWBcDLwuvjV6aE,6542
|
6
|
+
reydb/rdb.py,sha256=aHWBjgMr4w3yTbYwo0oN21t_SVbaLanUGUYeoRgAfpc,60965
|
7
|
+
reydb/rexec.py,sha256=ezYqSxW6PvvILugnlWtq-BoxfBHAec9f2P5mgIp_heA,8910
|
8
|
+
reydb/rfile.py,sha256=zNIb0HJ4nKqMf9YkJk5itVmUbyFbHtBmnpBgXwMNc0k,14182
|
9
|
+
reydb/rinfo.py,sha256=p8_nlOHWqnJCD0NRgbsxqnM2VKTDNO9jj4vwgd1HvG0,14267
|
10
|
+
reydb/rparam.py,sha256=d8Ijn86ieYlWsHjAwIjrVujynfgKtMF1E-q41wGtd9Y,6855
|
11
|
+
reydb-1.1.26.dist-info/METADATA,sha256=SWron0zEmIv4cLa9AFFLacGWR20R9CSgsC7iEeiZGiI,1550
|
12
|
+
reydb-1.1.26.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
13
|
+
reydb-1.1.26.dist-info/licenses/LICENSE,sha256=UYLPqp7BvPiH8yEZduJqmmyEl6hlM3lKrFIefiD4rvk,1059
|
14
|
+
reydb-1.1.26.dist-info/RECORD,,
|
reydb-1.1.24.dist-info/RECORD
DELETED
@@ -1,14 +0,0 @@
|
|
1
|
-
reydb/__init__.py,sha256=UetBDQylwFTWiPMKF1ZPW45A6mwYWWSYneTesl4xKBY,474
|
2
|
-
reydb/rall.py,sha256=i6-ph2cahhTTF17DjUYf6KX3DNxhEvy6iedlSeF4ibI,341
|
3
|
-
reydb/rbase.py,sha256=HMhxr7_TyzAusrv5dcc1hf3PmxGWj7m63kKcr5Ikbf4,312
|
4
|
-
reydb/rbuild.py,sha256=ppsaGWTC3S-zwQDj3keL3oF5TddORTuEpfqNElj6thU,32327
|
5
|
-
reydb/rconn.py,sha256=ZZDssqBCb1GQT61xG1N96-wYwISTIlKO1nJkgBuwBlI,6507
|
6
|
-
reydb/rdb.py,sha256=VVytmnw07MFC-gc3JzjJC50SJTXA0H-oy_pFtYf_ras,60895
|
7
|
-
reydb/rexec.py,sha256=kc5xSfuEDFW9rcAeJj_x6JWPDSYnHZQXcfSBXFGIhL8,8893
|
8
|
-
reydb/rfile.py,sha256=QQBsWB-ulumdmCcOnTOLiOKYFUpBmGWb0IZCI3aCo58,14275
|
9
|
-
reydb/rinfo.py,sha256=NhcFhzp9gQ49EpAqcFYXcG-FMUXu3qii8WGoHxN6UcQ,14250
|
10
|
-
reydb/rparam.py,sha256=EVSz_D4wyiaj5ZKxvdDcECmpbriOUNBBFCzz4bnV6dY,6838
|
11
|
-
reydb-1.1.24.dist-info/METADATA,sha256=9vreMU2KglvIkMrUXQl_ZIRdfNEpTiBZmP0is-Pkg_8,1550
|
12
|
-
reydb-1.1.24.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
13
|
-
reydb-1.1.24.dist-info/licenses/LICENSE,sha256=UYLPqp7BvPiH8yEZduJqmmyEl6hlM3lKrFIefiD4rvk,1059
|
14
|
-
reydb-1.1.24.dist-info/RECORD,,
|
File without changes
|
File without changes
|