execsql2 2.4.0__py3-none-any.whl → 2.4.4__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.
- execsql/cli/run.py +11 -5
- execsql/db/factory.py +10 -5
- execsql/db/mysql.py +14 -1
- execsql/importers/base.py +3 -3
- execsql/importers/csv.py +5 -5
- execsql/importers/feather.py +4 -4
- {execsql2-2.4.0.dist-info → execsql2-2.4.4.dist-info}/METADATA +1 -1
- {execsql2-2.4.0.dist-info → execsql2-2.4.4.dist-info}/RECORD +27 -27
- {execsql2-2.4.0.data → execsql2-2.4.4.data}/data/execsql2_extras/README.md +0 -0
- {execsql2-2.4.0.data → execsql2-2.4.4.data}/data/execsql2_extras/config_settings.sqlite +0 -0
- {execsql2-2.4.0.data → execsql2-2.4.4.data}/data/execsql2_extras/example_config_prompt.sql +0 -0
- {execsql2-2.4.0.data → execsql2-2.4.4.data}/data/execsql2_extras/execsql.conf +0 -0
- {execsql2-2.4.0.data → execsql2-2.4.4.data}/data/execsql2_extras/make_config_db.sql +0 -0
- {execsql2-2.4.0.data → execsql2-2.4.4.data}/data/execsql2_extras/md_compare.sql +0 -0
- {execsql2-2.4.0.data → execsql2-2.4.4.data}/data/execsql2_extras/md_glossary.sql +0 -0
- {execsql2-2.4.0.data → execsql2-2.4.4.data}/data/execsql2_extras/md_upsert.sql +0 -0
- {execsql2-2.4.0.data → execsql2-2.4.4.data}/data/execsql2_extras/pg_compare.sql +0 -0
- {execsql2-2.4.0.data → execsql2-2.4.4.data}/data/execsql2_extras/pg_glossary.sql +0 -0
- {execsql2-2.4.0.data → execsql2-2.4.4.data}/data/execsql2_extras/pg_upsert.sql +0 -0
- {execsql2-2.4.0.data → execsql2-2.4.4.data}/data/execsql2_extras/script_template.sql +0 -0
- {execsql2-2.4.0.data → execsql2-2.4.4.data}/data/execsql2_extras/ss_compare.sql +0 -0
- {execsql2-2.4.0.data → execsql2-2.4.4.data}/data/execsql2_extras/ss_glossary.sql +0 -0
- {execsql2-2.4.0.data → execsql2-2.4.4.data}/data/execsql2_extras/ss_upsert.sql +0 -0
- {execsql2-2.4.0.dist-info → execsql2-2.4.4.dist-info}/WHEEL +0 -0
- {execsql2-2.4.0.dist-info → execsql2-2.4.4.dist-info}/entry_points.txt +0 -0
- {execsql2-2.4.0.dist-info → execsql2-2.4.4.dist-info}/licenses/LICENSE.txt +0 -0
- {execsql2-2.4.0.dist-info → execsql2-2.4.4.dist-info}/licenses/NOTICE +0 -0
execsql/cli/run.py
CHANGED
|
@@ -141,18 +141,19 @@ def _run(
|
|
|
141
141
|
raise SystemExit(1)
|
|
142
142
|
db_type = db_type or parsed_dsn["db_type"]
|
|
143
143
|
conf.db_type = db_type
|
|
144
|
-
|
|
144
|
+
# DSN values override conf-file values — the CLI flag is explicit.
|
|
145
|
+
if parsed_dsn["server"]:
|
|
145
146
|
conf.server = parsed_dsn["server"]
|
|
146
|
-
if parsed_dsn["db"]
|
|
147
|
+
if parsed_dsn["db"]:
|
|
147
148
|
conf.db = parsed_dsn["db"]
|
|
148
|
-
if parsed_dsn["db_file"]
|
|
149
|
+
if parsed_dsn["db_file"]:
|
|
149
150
|
conf.db_file = parsed_dsn["db_file"]
|
|
150
|
-
if parsed_dsn["user"]
|
|
151
|
+
if parsed_dsn["user"]:
|
|
151
152
|
user = parsed_dsn["user"]
|
|
152
153
|
if parsed_dsn["password"]:
|
|
153
154
|
conf.db_password = parsed_dsn["password"]
|
|
154
155
|
conf.passwd_prompt = False
|
|
155
|
-
if parsed_dsn["port"]
|
|
156
|
+
if parsed_dsn["port"]:
|
|
156
157
|
port = parsed_dsn["port"]
|
|
157
158
|
|
|
158
159
|
# Apply CLI options over config-file values
|
|
@@ -538,6 +539,7 @@ def _connect_initial_db(conf: ConfigData):
|
|
|
538
539
|
pw_needed=conf.passwd_prompt,
|
|
539
540
|
port=conf.port,
|
|
540
541
|
encoding=conf.db_encoding,
|
|
542
|
+
password=getattr(conf, "db_password", None),
|
|
541
543
|
)
|
|
542
544
|
elif conf.db_type == "l":
|
|
543
545
|
if conf.db_file is None:
|
|
@@ -553,6 +555,7 @@ def _connect_initial_db(conf: ConfigData):
|
|
|
553
555
|
pw_needed=conf.passwd_prompt,
|
|
554
556
|
port=conf.port,
|
|
555
557
|
encoding=conf.db_encoding,
|
|
558
|
+
password=getattr(conf, "db_password", None),
|
|
556
559
|
)
|
|
557
560
|
elif conf.db_type == "k":
|
|
558
561
|
if conf.db_file is None:
|
|
@@ -568,6 +571,7 @@ def _connect_initial_db(conf: ConfigData):
|
|
|
568
571
|
pw_needed=conf.passwd_prompt,
|
|
569
572
|
port=conf.port,
|
|
570
573
|
encoding=conf.db_encoding,
|
|
574
|
+
password=getattr(conf, "db_password", None),
|
|
571
575
|
)
|
|
572
576
|
elif conf.db_type == "f":
|
|
573
577
|
return db_Firebird(
|
|
@@ -577,6 +581,7 @@ def _connect_initial_db(conf: ConfigData):
|
|
|
577
581
|
pw_needed=conf.passwd_prompt,
|
|
578
582
|
port=conf.port,
|
|
579
583
|
encoding=conf.db_encoding,
|
|
584
|
+
password=getattr(conf, "db_password", None),
|
|
580
585
|
)
|
|
581
586
|
elif conf.db_type == "d":
|
|
582
587
|
return db_Dsn(
|
|
@@ -584,6 +589,7 @@ def _connect_initial_db(conf: ConfigData):
|
|
|
584
589
|
user=conf.username,
|
|
585
590
|
pw_needed=conf.passwd_prompt,
|
|
586
591
|
encoding=conf.db_encoding,
|
|
592
|
+
password=getattr(conf, "db_password", None),
|
|
587
593
|
)
|
|
588
594
|
else:
|
|
589
595
|
from execsql.utils.errors import fatal_error
|
execsql/db/factory.py
CHANGED
|
@@ -93,9 +93,10 @@ def db_SqlServer(
|
|
|
93
93
|
pw_needed: bool = True,
|
|
94
94
|
port: int | None = None,
|
|
95
95
|
encoding: str | None = None,
|
|
96
|
+
password: str | None = None,
|
|
96
97
|
) -> SqlServerDatabase:
|
|
97
98
|
"""Open a Microsoft SQL Server connection via pyodbc."""
|
|
98
|
-
return SqlServerDatabase(server_name, database_name, user, pw_needed, port, encoding)
|
|
99
|
+
return SqlServerDatabase(server_name, database_name, user, pw_needed, port, encoding, password=password)
|
|
99
100
|
|
|
100
101
|
|
|
101
102
|
def db_MySQL(
|
|
@@ -105,9 +106,10 @@ def db_MySQL(
|
|
|
105
106
|
pw_needed: bool = True,
|
|
106
107
|
port: int | None = None,
|
|
107
108
|
encoding: str | None = None,
|
|
109
|
+
password: str | None = None,
|
|
108
110
|
) -> MySQLDatabase:
|
|
109
111
|
"""Open a MySQL or MariaDB connection via pymysql."""
|
|
110
|
-
return MySQLDatabase(server_name, database_name, user, pw_needed, port, encoding)
|
|
112
|
+
return MySQLDatabase(server_name, database_name, user, pw_needed, port, encoding, password=password)
|
|
111
113
|
|
|
112
114
|
|
|
113
115
|
def db_DuckDB(
|
|
@@ -136,9 +138,10 @@ def db_Oracle(
|
|
|
136
138
|
pw_needed: bool = True,
|
|
137
139
|
port: int | None = None,
|
|
138
140
|
encoding: str | None = None,
|
|
141
|
+
password: str | None = None,
|
|
139
142
|
) -> OracleDatabase:
|
|
140
143
|
"""Open an Oracle database connection via cx_Oracle (python-oracledb)."""
|
|
141
|
-
return OracleDatabase(server_name, database_name, user, pw_needed, port, encoding)
|
|
144
|
+
return OracleDatabase(server_name, database_name, user, pw_needed, port, encoding, password=password)
|
|
142
145
|
|
|
143
146
|
|
|
144
147
|
def db_Firebird(
|
|
@@ -148,9 +151,10 @@ def db_Firebird(
|
|
|
148
151
|
pw_needed: bool = True,
|
|
149
152
|
port: int | None = None,
|
|
150
153
|
encoding: str | None = None,
|
|
154
|
+
password: str | None = None,
|
|
151
155
|
) -> FirebirdDatabase:
|
|
152
156
|
"""Open a Firebird database connection via the firebird-driver package."""
|
|
153
|
-
return FirebirdDatabase(server_name, database_name, user, pw_needed, port, encoding)
|
|
157
|
+
return FirebirdDatabase(server_name, database_name, user, pw_needed, port, encoding, password=password)
|
|
154
158
|
|
|
155
159
|
|
|
156
160
|
def db_Dsn(
|
|
@@ -158,6 +162,7 @@ def db_Dsn(
|
|
|
158
162
|
user: str | None = None,
|
|
159
163
|
pw_needed: bool = True,
|
|
160
164
|
encoding: str | None = None,
|
|
165
|
+
password: str | None = None,
|
|
161
166
|
) -> DsnDatabase:
|
|
162
167
|
"""Open a connection to any ODBC data source registered under *dsn_name*."""
|
|
163
|
-
return DsnDatabase(dsn_name=dsn_name, user_name=user, need_passwd=pw_needed, encoding=encoding)
|
|
168
|
+
return DsnDatabase(dsn_name=dsn_name, user_name=user, need_passwd=pw_needed, encoding=encoding, password=password)
|
execsql/db/mysql.py
CHANGED
|
@@ -18,6 +18,18 @@ import execsql.state as _state
|
|
|
18
18
|
|
|
19
19
|
__all__ = ["MySQLDatabase"]
|
|
20
20
|
|
|
21
|
+
# Map Python encoding names to MySQL CHARACTER SET names for LOAD DATA INFILE.
|
|
22
|
+
_PYTHON_TO_MYSQL_CHARSET: dict[str, str] = {
|
|
23
|
+
"utf-8": "utf8mb4",
|
|
24
|
+
"utf8": "utf8mb4",
|
|
25
|
+
"latin-1": "latin1",
|
|
26
|
+
"iso-8859-1": "latin1",
|
|
27
|
+
"iso8859-1": "latin1",
|
|
28
|
+
"ascii": "ascii",
|
|
29
|
+
"cp1252": "cp1252",
|
|
30
|
+
"windows-1252": "cp1252",
|
|
31
|
+
}
|
|
32
|
+
|
|
21
33
|
|
|
22
34
|
class MySQLDatabase(Database):
|
|
23
35
|
"""MySQL and MariaDB adapter using the pymysql package."""
|
|
@@ -190,7 +202,8 @@ class MySQLDatabase(Database):
|
|
|
190
202
|
):
|
|
191
203
|
import_sql = f"load data local infile '{csv_file_obj.csvfname}' into table {sq_name}"
|
|
192
204
|
if csv_file_obj.encoding:
|
|
193
|
-
|
|
205
|
+
charset = _PYTHON_TO_MYSQL_CHARSET.get(csv_file_obj.encoding.lower(), csv_file_obj.encoding)
|
|
206
|
+
import_sql = f"{import_sql} character set {charset}"
|
|
194
207
|
if csv_file_obj.delimiter or csv_file_obj.quotechar:
|
|
195
208
|
import_sql = import_sql + " columns"
|
|
196
209
|
if csv_file_obj.delimiter:
|
execsql/importers/base.py
CHANGED
|
@@ -28,7 +28,7 @@ def import_data_table(
|
|
|
28
28
|
hdrs: list[str],
|
|
29
29
|
data: list[Any],
|
|
30
30
|
) -> None:
|
|
31
|
-
from execsql.utils.errors import
|
|
31
|
+
from execsql.utils.errors import exception_desc
|
|
32
32
|
|
|
33
33
|
conf = _state.conf
|
|
34
34
|
if any(x is None or len(x.strip()) == 0 for x in hdrs):
|
|
@@ -91,7 +91,7 @@ def import_data_table(
|
|
|
91
91
|
raise ErrInfo(
|
|
92
92
|
type="db",
|
|
93
93
|
command_text=sql,
|
|
94
|
-
exception_msg=
|
|
94
|
+
exception_msg=exception_desc(),
|
|
95
95
|
other_msg=f"Could not create new table ({tablename}) for IMPORT metacommand",
|
|
96
96
|
) from e
|
|
97
97
|
table_cols = db.table_columns(tablename, schemaname)
|
|
@@ -111,4 +111,4 @@ def import_data_table(
|
|
|
111
111
|
except ErrInfo:
|
|
112
112
|
raise
|
|
113
113
|
except Exception as e:
|
|
114
|
-
raise ErrInfo("db", "Call to populate_table when importing data", exception_msg=
|
|
114
|
+
raise ErrInfo("db", "Call to populate_table when importing data", exception_msg=exception_desc()) from e
|
execsql/importers/csv.py
CHANGED
|
@@ -32,7 +32,7 @@ def importtable(
|
|
|
32
32
|
encoding: str | None = None,
|
|
33
33
|
junk_header_lines: int = 0,
|
|
34
34
|
) -> None:
|
|
35
|
-
from execsql.utils.errors import
|
|
35
|
+
from execsql.utils.errors import exception_desc
|
|
36
36
|
|
|
37
37
|
conf = _state.conf
|
|
38
38
|
if not Path(filename).is_file():
|
|
@@ -66,7 +66,7 @@ def importtable(
|
|
|
66
66
|
raise ErrInfo(
|
|
67
67
|
type="db",
|
|
68
68
|
command_text=sql,
|
|
69
|
-
exception_msg=
|
|
69
|
+
exception_msg=exception_desc(),
|
|
70
70
|
other_msg=f"Could not create new table ({tablename}) for IMPORT metacommand",
|
|
71
71
|
) from e
|
|
72
72
|
else:
|
|
@@ -91,7 +91,7 @@ def importtable(
|
|
|
91
91
|
fq_tablename = db.schema_qualified_table_name(schemaname, tablename)
|
|
92
92
|
raise ErrInfo(
|
|
93
93
|
"exception",
|
|
94
|
-
exception_msg=
|
|
94
|
+
exception_msg=exception_desc(),
|
|
95
95
|
other_msg=f"Can't import tabular file ({filename}) to table ({fq_tablename})",
|
|
96
96
|
) from e
|
|
97
97
|
inf.close()
|
|
@@ -104,7 +104,7 @@ def importfile(
|
|
|
104
104
|
columname: str,
|
|
105
105
|
filename: str,
|
|
106
106
|
) -> None:
|
|
107
|
-
from execsql.utils.errors import
|
|
107
|
+
from execsql.utils.errors import exception_desc
|
|
108
108
|
|
|
109
109
|
if schemaname is not None:
|
|
110
110
|
if not db.table_exists(tablename, schemaname):
|
|
@@ -127,6 +127,6 @@ def importfile(
|
|
|
127
127
|
fq_tablename = db.schema_qualified_table_name(schemaname, tablename)
|
|
128
128
|
raise ErrInfo(
|
|
129
129
|
"exception",
|
|
130
|
-
exception_msg=
|
|
130
|
+
exception_msg=exception_desc(),
|
|
131
131
|
other_msg=f"Can't import file ({filename}) to table ({fq_tablename})",
|
|
132
132
|
) from e
|
execsql/importers/feather.py
CHANGED
|
@@ -24,14 +24,14 @@ def import_feather(
|
|
|
24
24
|
filename: str,
|
|
25
25
|
is_new: Any,
|
|
26
26
|
) -> None:
|
|
27
|
-
from execsql.utils.errors import
|
|
27
|
+
from execsql.utils.errors import exception_desc
|
|
28
28
|
|
|
29
29
|
try:
|
|
30
30
|
import polars as pl
|
|
31
31
|
except Exception as e:
|
|
32
32
|
raise ErrInfo(
|
|
33
33
|
"exception",
|
|
34
|
-
exception_msg=
|
|
34
|
+
exception_msg=exception_desc(),
|
|
35
35
|
other_msg="The polars Python library must be installed to import data from the Feather format.",
|
|
36
36
|
) from e
|
|
37
37
|
df = pl.read_ipc(filename)
|
|
@@ -47,14 +47,14 @@ def import_parquet(
|
|
|
47
47
|
filename: str,
|
|
48
48
|
is_new: Any,
|
|
49
49
|
) -> None:
|
|
50
|
-
from execsql.utils.errors import
|
|
50
|
+
from execsql.utils.errors import exception_desc
|
|
51
51
|
|
|
52
52
|
try:
|
|
53
53
|
import polars as pl
|
|
54
54
|
except Exception as e:
|
|
55
55
|
raise ErrInfo(
|
|
56
56
|
"exception",
|
|
57
|
-
exception_msg=
|
|
57
|
+
exception_msg=exception_desc(),
|
|
58
58
|
other_msg="The polars Python library must be installed to import data from the Parquet format.",
|
|
59
59
|
) from e
|
|
60
60
|
df = pl.read_parquet(filename)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: execsql2
|
|
3
|
-
Version: 2.4.
|
|
3
|
+
Version: 2.4.4
|
|
4
4
|
Summary: Runs a SQL script against a PostgreSQL, SQLite, MariaDB/MySQL, DuckDB, Firebird, MS-Access, MS-SQL-Server, or Oracle database, or an ODBC DSN. Provides metacommands to import and export data, copy data between databases, conditionally execute SQL and metacommands, and dynamically alter SQL and metacommands with substitution variables.
|
|
5
5
|
Project-URL: Repository, https://github.com/geocoug/execsql
|
|
6
6
|
Project-URL: Issues, https://github.com/geocoug/execsql/issues
|
|
@@ -12,15 +12,15 @@ execsql/types.py,sha256=8lCYX4ihkSzQJKqCYFTOVv0GDfvNrY7dcb8pAnTSR4E,29776
|
|
|
12
12
|
execsql/cli/__init__.py,sha256=rxQy5MktCksykRm9u7kqxqbTo-Rx0MCIHd3wqWufszY,14667
|
|
13
13
|
execsql/cli/dsn.py,sha256=_mDilt_dhjt1uwN1AC6Mbl9zmKl7pdaZA7eMgR7ZpeE,2759
|
|
14
14
|
execsql/cli/help.py,sha256=zSEn66LDnNEnkqgA6CEQWraIzgiwGBJSiaflRuCySXQ,5331
|
|
15
|
-
execsql/cli/run.py,sha256=
|
|
15
|
+
execsql/cli/run.py,sha256=MjsQjSFyQRSIqA_T82n9ZbiKaVnFVzpRIcuv0IHqJT8,22748
|
|
16
16
|
execsql/db/__init__.py,sha256=jTbuafuKOqYtXFR1wvCOoKK5Lr3l1uErfaIbIr6UywI,1063
|
|
17
17
|
execsql/db/access.py,sha256=bx5qr_K51LNHVTibPqmjv7U1O2bW6DRQr8HzlzHrYIY,16520
|
|
18
18
|
execsql/db/base.py,sha256=jcamHa5pHsOKpoNf3E166j_eKsMxu-8QMkHkMePLwd0,30110
|
|
19
19
|
execsql/db/dsn.py,sha256=4YZr4yzXeaMrE-b72c8mJvi4gnllpI9v8iRrlzXKjb4,5142
|
|
20
20
|
execsql/db/duckdb.py,sha256=KQQzO89ajJjXqEchysn9_kKdXdWxRPi4mKp8ra6A8v4,2836
|
|
21
|
-
execsql/db/factory.py,sha256=
|
|
21
|
+
execsql/db/factory.py,sha256=YR1m_c2Hhj_GXVGGkWoSEPZBpgNu_c4FxRnbp-xV3rs,5230
|
|
22
22
|
execsql/db/firebird.py,sha256=Kgjlij7HeKXr7fymFDl05Ljzvs25uoQcI6Do3A2mSNQ,7871
|
|
23
|
-
execsql/db/mysql.py,sha256=
|
|
23
|
+
execsql/db/mysql.py,sha256=KzDT5xgMG9Eh0L2fjKswdbRqEfVTq9pPSyBeWEAJVk4,13334
|
|
24
24
|
execsql/db/oracle.py,sha256=Psl9JZ0XWwHshr2xyy1vIbLf2KJ2TGRj_kTcc0YXLh4,9464
|
|
25
25
|
execsql/db/postgres.py,sha256=gYG1Jw8tbq06TROokoSlEfg6ZtSOXhWDYAeyS_K2Yaw,19443
|
|
26
26
|
execsql/db/sqlite.py,sha256=oT8MlhsaD7lmJx9ZK32wR6H9Pccr5wxs3Bk9Q3iypRI,9429
|
|
@@ -49,9 +49,9 @@ execsql/gui/console.py,sha256=Ln9ixVMLlEK5foHi0t2EywrvTiBqWoPEpp8cnof3eIw,14241
|
|
|
49
49
|
execsql/gui/desktop.py,sha256=zooMA28FWHndy9Aw242wRzchs1QxYwlGGMsWvn4-EKo,42123
|
|
50
50
|
execsql/gui/tui.py,sha256=n5xzwe1jAsU54jj0PpcBmVfnvfycPVOeiLx07-IfVVk,45948
|
|
51
51
|
execsql/importers/__init__.py,sha256=dDsxSVeQYXBvm9yGqN3QswyGbLWTwt08pvUuRJgZhl4,289
|
|
52
|
-
execsql/importers/base.py,sha256=
|
|
53
|
-
execsql/importers/csv.py,sha256=
|
|
54
|
-
execsql/importers/feather.py,sha256=
|
|
52
|
+
execsql/importers/base.py,sha256=ODRrJ4mVRFyQ3iF7qYdTzrXZutxgFCHYnixvfPjt03k,4040
|
|
53
|
+
execsql/importers/csv.py,sha256=x_9MrKj6K2ByrZNuO2mCnQNhQiN4WXclF4IfhwvRFPA,4696
|
|
54
|
+
execsql/importers/feather.py,sha256=y_4i8A4v_kI2dOW7LPo2ndoQqUP5CmdDWqXtHsqpJ60,1770
|
|
55
55
|
execsql/importers/ods.py,sha256=O-bXyy_vlG4xl_KEQstYOaSAlzkGdF6TRnoHCTGpgTo,2770
|
|
56
56
|
execsql/importers/xls.py,sha256=wWIS8T-zxHEhK_YFl9tovCE_ByTVtUlbmVLhrrdFRb8,3602
|
|
57
57
|
execsql/metacommands/__init__.py,sha256=z5KtcR7qCoV0P9qyoAB1i2naXMKLqKjCa7wBNjKMrHU,8720
|
|
@@ -85,24 +85,24 @@ execsql/utils/numeric.py,sha256=xh02ANSRk3nUpQ-rtm66ILoMqoi7HtzCoRMIOT9U8QI,1570
|
|
|
85
85
|
execsql/utils/regex.py,sha256=diEzTZqU_HHwVMadPAvN1Vgzhl7I03eVaEFGCXyGGL8,3770
|
|
86
86
|
execsql/utils/strings.py,sha256=5Dvzrk-9SIw2lpxXZQkiJbNyo1sy7iXXAtSULlZ0KG8,8488
|
|
87
87
|
execsql/utils/timer.py,sha256=eDYf5VzCNFk7oo90InJucUm3XcBdhYMogjZMqeg9xzc,1899
|
|
88
|
-
execsql2-2.4.
|
|
89
|
-
execsql2-2.4.
|
|
90
|
-
execsql2-2.4.
|
|
91
|
-
execsql2-2.4.
|
|
92
|
-
execsql2-2.4.
|
|
93
|
-
execsql2-2.4.
|
|
94
|
-
execsql2-2.4.
|
|
95
|
-
execsql2-2.4.
|
|
96
|
-
execsql2-2.4.
|
|
97
|
-
execsql2-2.4.
|
|
98
|
-
execsql2-2.4.
|
|
99
|
-
execsql2-2.4.
|
|
100
|
-
execsql2-2.4.
|
|
101
|
-
execsql2-2.4.
|
|
102
|
-
execsql2-2.4.
|
|
103
|
-
execsql2-2.4.
|
|
104
|
-
execsql2-2.4.
|
|
105
|
-
execsql2-2.4.
|
|
106
|
-
execsql2-2.4.
|
|
107
|
-
execsql2-2.4.
|
|
108
|
-
execsql2-2.4.
|
|
88
|
+
execsql2-2.4.4.data/data/execsql2_extras/README.md,sha256=sxwVyU0ZahCfANv56LahkyuM505kFjrMhe-1SvWE69E,4845
|
|
89
|
+
execsql2-2.4.4.data/data/execsql2_extras/config_settings.sqlite,sha256=aY5cxR7Q7J6zJ4bC9lu5mHUrhy211Cq3MNKPQVCt02E,20480
|
|
90
|
+
execsql2-2.4.4.data/data/execsql2_extras/example_config_prompt.sql,sha256=SY3Jxn1qcVm4kPW9xmmTfknHfvURXmeEYTbRjYrjGSw,7487
|
|
91
|
+
execsql2-2.4.4.data/data/execsql2_extras/execsql.conf,sha256=_45iJ-KWZnB8uMW_gEg067MM5pmGJ-dVl7VbAZMunAE,9530
|
|
92
|
+
execsql2-2.4.4.data/data/execsql2_extras/make_config_db.sql,sha256=WwyC6dK-Eh5CAVppiBCDHqiI1_wEI9U95Ytpr4lsZkg,8726
|
|
93
|
+
execsql2-2.4.4.data/data/execsql2_extras/md_compare.sql,sha256=B8Wd7LZ0vnMY2qvA139JIEBkPObgRH2i5xj6PejTQt8,24092
|
|
94
|
+
execsql2-2.4.4.data/data/execsql2_extras/md_glossary.sql,sha256=DJRHcU5NbFpxTTX-IwH3yRlsboj1q6BBGrUAHKn4Cuo,10796
|
|
95
|
+
execsql2-2.4.4.data/data/execsql2_extras/md_upsert.sql,sha256=v_7GbWh_N1mBTmw3gvTrkagOVp2q0KmXvM8hE-DlFxY,112524
|
|
96
|
+
execsql2-2.4.4.data/data/execsql2_extras/pg_compare.sql,sha256=9dWa8hnfy5dVJI-z2iGpd9JzQmI4j2ziMlEdpnr66ro,24352
|
|
97
|
+
execsql2-2.4.4.data/data/execsql2_extras/pg_glossary.sql,sha256=pKjIIDsROAgJq2H-1qNEcRMAWManivcZ_AEVHzUUlic,9908
|
|
98
|
+
execsql2-2.4.4.data/data/execsql2_extras/pg_upsert.sql,sha256=k7AFiGTLBy3nf-qO5QIaZrEYTAKvdxxU3JDLx9jqkzs,108315
|
|
99
|
+
execsql2-2.4.4.data/data/execsql2_extras/script_template.sql,sha256=1Estacb_vm1FgK41k_G9nuduP1yiA-fQ1Kn4Z4mv5Ao,11153
|
|
100
|
+
execsql2-2.4.4.data/data/execsql2_extras/ss_compare.sql,sha256=TsVxWm3cEpR5-EiMYXNhtaY0arSNeKZhsJdHdLA7xeI,24833
|
|
101
|
+
execsql2-2.4.4.data/data/execsql2_extras/ss_glossary.sql,sha256=cLM7nN8JOIu9ZVP9oY9qdSK3hrnWJiDcX6nZmQQbQWI,13065
|
|
102
|
+
execsql2-2.4.4.data/data/execsql2_extras/ss_upsert.sql,sha256=BCqmBykXBF-BpCgOFeG1qhf2XfScKsxPD17wd1hYfHw,120647
|
|
103
|
+
execsql2-2.4.4.dist-info/METADATA,sha256=7WLnQPnzRGSLoTgEnsL29rXUHxeEtTaxG8VQ4pkiJ64,15168
|
|
104
|
+
execsql2-2.4.4.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
|
|
105
|
+
execsql2-2.4.4.dist-info/entry_points.txt,sha256=sUOxkM-dN1eBGGpSpDLsAaE0yNXYQKWZAfxPOlMkQyk,90
|
|
106
|
+
execsql2-2.4.4.dist-info/licenses/LICENSE.txt,sha256=LBdhuxejF8_bLCHZ2kWfmDXpDGUu914Gbd6_3JjCRe0,676
|
|
107
|
+
execsql2-2.4.4.dist-info/licenses/NOTICE,sha256=sqVrM73Ys9zfvWC_P797lHfTnoPW_ETeBSrUTFaob0A,339
|
|
108
|
+
execsql2-2.4.4.dist-info/RECORD,,
|
|
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
|
|
File without changes
|