execsql2 2.11.0__py3-none-any.whl → 2.11.1__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/lint.py +1 -1
- execsql/cli/run.py +3 -2
- execsql/exporters/xlsx.py +5 -0
- execsql/exporters/yaml.py +2 -0
- execsql/metacommands/conditions.py +1 -1
- execsql/metacommands/control.py +4 -10
- execsql/metacommands/debug.py +1 -1
- execsql/metacommands/debug_repl.py +4 -3
- execsql/script/engine.py +13 -3
- execsql/state.py +2 -2
- execsql/utils/gui.py +26 -4
- {execsql2-2.11.0.dist-info → execsql2-2.11.1.dist-info}/METADATA +5 -2
- {execsql2-2.11.0.dist-info → execsql2-2.11.1.dist-info}/RECORD +32 -32
- {execsql2-2.11.0.data → execsql2-2.11.1.data}/data/execsql2_extras/README.md +0 -0
- {execsql2-2.11.0.data → execsql2-2.11.1.data}/data/execsql2_extras/config_settings.sqlite +0 -0
- {execsql2-2.11.0.data → execsql2-2.11.1.data}/data/execsql2_extras/example_config_prompt.sql +0 -0
- {execsql2-2.11.0.data → execsql2-2.11.1.data}/data/execsql2_extras/execsql.conf +0 -0
- {execsql2-2.11.0.data → execsql2-2.11.1.data}/data/execsql2_extras/make_config_db.sql +0 -0
- {execsql2-2.11.0.data → execsql2-2.11.1.data}/data/execsql2_extras/md_compare.sql +0 -0
- {execsql2-2.11.0.data → execsql2-2.11.1.data}/data/execsql2_extras/md_glossary.sql +0 -0
- {execsql2-2.11.0.data → execsql2-2.11.1.data}/data/execsql2_extras/md_upsert.sql +0 -0
- {execsql2-2.11.0.data → execsql2-2.11.1.data}/data/execsql2_extras/pg_compare.sql +0 -0
- {execsql2-2.11.0.data → execsql2-2.11.1.data}/data/execsql2_extras/pg_glossary.sql +0 -0
- {execsql2-2.11.0.data → execsql2-2.11.1.data}/data/execsql2_extras/pg_upsert.sql +0 -0
- {execsql2-2.11.0.data → execsql2-2.11.1.data}/data/execsql2_extras/script_template.sql +0 -0
- {execsql2-2.11.0.data → execsql2-2.11.1.data}/data/execsql2_extras/ss_compare.sql +0 -0
- {execsql2-2.11.0.data → execsql2-2.11.1.data}/data/execsql2_extras/ss_glossary.sql +0 -0
- {execsql2-2.11.0.data → execsql2-2.11.1.data}/data/execsql2_extras/ss_upsert.sql +0 -0
- {execsql2-2.11.0.dist-info → execsql2-2.11.1.dist-info}/WHEEL +0 -0
- {execsql2-2.11.0.dist-info → execsql2-2.11.1.dist-info}/entry_points.txt +0 -0
- {execsql2-2.11.0.dist-info → execsql2-2.11.1.dist-info}/licenses/LICENSE.txt +0 -0
- {execsql2-2.11.0.dist-info → execsql2-2.11.1.dist-info}/licenses/NOTICE +0 -0
execsql/cli/lint.py
CHANGED
|
@@ -194,7 +194,7 @@ def _lint_cmdlist(
|
|
|
194
194
|
for cmd in cmdlist.cmdlist:
|
|
195
195
|
src = cmd.source
|
|
196
196
|
lno = cmd.line_no
|
|
197
|
-
stmt = cmd.command.statement
|
|
197
|
+
stmt = cmd.command.statement
|
|
198
198
|
|
|
199
199
|
if cmd.command_type == "sql":
|
|
200
200
|
# SQL statements: check for variable references only
|
execsql/cli/run.py
CHANGED
|
@@ -8,6 +8,7 @@ and drives the main execution loop. Separated from argument parsing
|
|
|
8
8
|
from __future__ import annotations
|
|
9
9
|
|
|
10
10
|
import atexit
|
|
11
|
+
from typing import Any
|
|
11
12
|
import datetime
|
|
12
13
|
import getpass
|
|
13
14
|
import os
|
|
@@ -128,7 +129,7 @@ def _print_profile(profile_data: list[tuple]) -> None:
|
|
|
128
129
|
# ---------------------------------------------------------------------------
|
|
129
130
|
|
|
130
131
|
|
|
131
|
-
def _ping_db(db) -> None:
|
|
132
|
+
def _ping_db(db: Any) -> None:
|
|
132
133
|
"""Test connectivity for *db*, print connection details, and exit.
|
|
133
134
|
|
|
134
135
|
Attempts to execute ``SELECT version()`` (or ``SELECT sqlite_version()``
|
|
@@ -156,7 +157,7 @@ def _ping_db(db) -> None:
|
|
|
156
157
|
curs.close()
|
|
157
158
|
if row and row[0]:
|
|
158
159
|
version_str = str(row[0]).split("\n")[0].strip()
|
|
159
|
-
|
|
160
|
+
break
|
|
160
161
|
except Exception:
|
|
161
162
|
continue
|
|
162
163
|
|
execsql/exporters/xlsx.py
CHANGED
|
@@ -178,6 +178,11 @@ def write_query_to_xlsx(
|
|
|
178
178
|
wb.save(outfile)
|
|
179
179
|
wb.close()
|
|
180
180
|
|
|
181
|
+
if _state.export_metadata is not None:
|
|
182
|
+
_state.export_metadata.add(
|
|
183
|
+
ExportRecord(queryname=select_stmt, outfile=outfile, zipfile=None, description=desc),
|
|
184
|
+
)
|
|
185
|
+
|
|
181
186
|
|
|
182
187
|
def write_queries_to_xlsx(
|
|
183
188
|
table_list: str,
|
execsql/exporters/yaml.py
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
|
-
from execsql.exceptions import ErrInfo
|
|
3
2
|
|
|
4
3
|
"""
|
|
5
4
|
Conditional test handler functions for execsql.
|
|
@@ -15,6 +14,7 @@ at registration time.
|
|
|
15
14
|
"""
|
|
16
15
|
|
|
17
16
|
import os
|
|
17
|
+
from execsql.exceptions import ErrInfo
|
|
18
18
|
import time
|
|
19
19
|
from pathlib import Path
|
|
20
20
|
from typing import Any
|
execsql/metacommands/control.py
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
|
-
from execsql.exceptions import ErrInfo
|
|
3
2
|
|
|
4
3
|
"""
|
|
5
4
|
Control-flow metacommand handlers for execsql.
|
|
@@ -18,6 +17,8 @@ Implements the imperative ``x_*`` functions for script flow control:
|
|
|
18
17
|
"""
|
|
19
18
|
|
|
20
19
|
import time
|
|
20
|
+
|
|
21
|
+
from execsql.exceptions import ErrInfo
|
|
21
22
|
from typing import Any
|
|
22
23
|
|
|
23
24
|
import execsql.state as _state
|
|
@@ -62,7 +63,8 @@ def x_assert(**kwargs: Any) -> None:
|
|
|
62
63
|
|
|
63
64
|
result = _state.xcmd_test(condition)
|
|
64
65
|
if result:
|
|
65
|
-
_state.exec_log
|
|
66
|
+
if _state.exec_log is not None:
|
|
67
|
+
_state.exec_log.log_user_msg(f"ASSERT passed: {condition}")
|
|
66
68
|
else:
|
|
67
69
|
raise ErrInfo(type="cmd", other_msg=message)
|
|
68
70
|
|
|
@@ -134,14 +136,6 @@ def x_loop(**kwargs: Any) -> None:
|
|
|
134
136
|
)
|
|
135
137
|
|
|
136
138
|
|
|
137
|
-
def endloop() -> None:
|
|
138
|
-
if len(_state.loopcommandstack) == 0:
|
|
139
|
-
raise ErrInfo("error", other_msg="END LOOP metacommand without a matching preceding LOOP metacommand.")
|
|
140
|
-
_state.compiling_loop = False
|
|
141
|
-
_state.commandliststack.append(_state.loopcommandstack[-1])
|
|
142
|
-
_state.loopcommandstack.pop()
|
|
143
|
-
|
|
144
|
-
|
|
145
139
|
def x_halt(**kwargs: Any) -> None:
|
|
146
140
|
errmsg = kwargs["errmsg"]
|
|
147
141
|
tee = kwargs["tee"]
|
execsql/metacommands/debug.py
CHANGED
|
@@ -74,7 +74,7 @@ def x_debug_log_subvars(**kwargs: Any) -> None:
|
|
|
74
74
|
local = kwargs["local"]
|
|
75
75
|
user = kwargs["user"]
|
|
76
76
|
for s in _state.commandliststack[-1].localvars.substitutions:
|
|
77
|
-
_state.exec_log.log_status_info(f"Substitution [{s}] = [{s}]")
|
|
77
|
+
_state.exec_log.log_status_info(f"Substitution [{s[0]}] = [{s[1]}]")
|
|
78
78
|
if local is None:
|
|
79
79
|
for s in _state.subvars.substitutions:
|
|
80
80
|
if user is None or s[0][0].isalnum() or s[0][0] == "_":
|
|
@@ -98,13 +98,14 @@ def _debug_repl() -> None:
|
|
|
98
98
|
|
|
99
99
|
# Dot-prefixed → REPL command
|
|
100
100
|
if line.startswith("."):
|
|
101
|
+
cmd = line[1:].strip().lower()
|
|
101
102
|
_handle_dot_command(line)
|
|
102
|
-
if
|
|
103
|
+
if cmd in ("continue", "c"):
|
|
103
104
|
return
|
|
104
|
-
if
|
|
105
|
+
if cmd in ("abort", "q", "quit"):
|
|
105
106
|
# _handle_dot_command already raised SystemExit, but guard anyway
|
|
106
107
|
return
|
|
107
|
-
if
|
|
108
|
+
if cmd in ("next", "n"):
|
|
108
109
|
return
|
|
109
110
|
continue
|
|
110
111
|
|
execsql/script/engine.py
CHANGED
|
@@ -194,7 +194,7 @@ class MetaCommandList:
|
|
|
194
194
|
patterns; each compiles into a separate :class:`MetaCommand` prepended to
|
|
195
195
|
the dispatch list so that later registrations take priority.
|
|
196
196
|
"""
|
|
197
|
-
if
|
|
197
|
+
if isinstance(matching_regexes, (tuple, list)):
|
|
198
198
|
raw_patterns = list(matching_regexes)
|
|
199
199
|
regexes = [re.compile(rx, re.I) for rx in raw_patterns]
|
|
200
200
|
else:
|
|
@@ -305,9 +305,14 @@ class SqlStmt:
|
|
|
305
305
|
except Exception:
|
|
306
306
|
e = ErrInfo(type="exception", exception_msg=exception_desc())
|
|
307
307
|
if e:
|
|
308
|
+
from execsql.utils.errors import stamp_errinfo
|
|
309
|
+
|
|
310
|
+
stamp_errinfo(e)
|
|
308
311
|
_state.subvars.add_substitution("$LAST_ERROR", cmd)
|
|
309
|
-
_state.subvars.add_substitution("$ERROR_MESSAGE",
|
|
312
|
+
_state.subvars.add_substitution("$ERROR_MESSAGE", e.errmsg())
|
|
310
313
|
_state.status.sql_error = True
|
|
314
|
+
if _state.exec_log is not None:
|
|
315
|
+
_state.exec_log.log_status_info(f"SQL error: {e.errmsg()}")
|
|
311
316
|
if _state.status.halt_on_err:
|
|
312
317
|
from execsql.utils.errors import exit_now
|
|
313
318
|
|
|
@@ -349,9 +354,14 @@ class MetacommandStmt:
|
|
|
349
354
|
except Exception:
|
|
350
355
|
e = ErrInfo(type="exception", exception_msg=exception_desc())
|
|
351
356
|
if e:
|
|
357
|
+
from execsql.utils.errors import stamp_errinfo
|
|
358
|
+
|
|
359
|
+
stamp_errinfo(e)
|
|
352
360
|
_state.status.metacommand_error = True
|
|
353
361
|
_state.subvars.add_substitution("$LAST_ERROR", cmd)
|
|
354
|
-
_state.subvars.add_substitution("$ERROR_MESSAGE",
|
|
362
|
+
_state.subvars.add_substitution("$ERROR_MESSAGE", e.errmsg())
|
|
363
|
+
if _state.exec_log is not None:
|
|
364
|
+
_state.exec_log.log_status_info(f"Metacommand error: {e.errmsg()}")
|
|
355
365
|
if _state.status.halt_on_metacommand_err:
|
|
356
366
|
# Re-raise the original ErrInfo so its message is preserved, not
|
|
357
367
|
# replaced with the generic "Unknown metacommand" text.
|
execsql/state.py
CHANGED
|
@@ -336,8 +336,7 @@ class _StateModule(types.ModuleType):
|
|
|
336
336
|
# via setattr (local) or delattr (non-local). Since context
|
|
337
337
|
# attrs live on _ctx, not __dict__, patch takes the delattr
|
|
338
338
|
# path. We reset to the default rather than truly deleting.
|
|
339
|
-
|
|
340
|
-
setattr(self.__dict__["_ctx"], name, getattr(_defaults, name))
|
|
339
|
+
setattr(self.__dict__["_ctx"], name, getattr(_DEFAULT_CTX, name))
|
|
341
340
|
else:
|
|
342
341
|
super().__delattr__(name)
|
|
343
342
|
|
|
@@ -468,4 +467,5 @@ def initialize(
|
|
|
468
467
|
# ---------------------------------------------------------------------------
|
|
469
468
|
|
|
470
469
|
_ctx = RuntimeContext()
|
|
470
|
+
_DEFAULT_CTX = RuntimeContext() # Cached defaults for __delattr__ reset
|
|
471
471
|
sys.modules[__name__].__class__ = _StateModule
|
execsql/utils/gui.py
CHANGED
|
@@ -358,13 +358,35 @@ def gui_console_wait_user(message: str = "") -> None:
|
|
|
358
358
|
print(message, file=sys.stderr)
|
|
359
359
|
|
|
360
360
|
|
|
361
|
-
def gui_console_width() -> int:
|
|
362
|
-
"""
|
|
361
|
+
def gui_console_width(width: int | None = None) -> int:
|
|
362
|
+
"""Get or set the console width in characters.
|
|
363
|
+
|
|
364
|
+
When *width* is provided, updates the active GUI console (if any).
|
|
365
|
+
Always returns the current width.
|
|
366
|
+
"""
|
|
367
|
+
global _console_width
|
|
368
|
+
if width is not None:
|
|
369
|
+
import execsql.state as _state
|
|
370
|
+
|
|
371
|
+
_console_width = int(width)
|
|
372
|
+
if _state.gui_console is not None and hasattr(_state.gui_console, "set_width"):
|
|
373
|
+
_state.gui_console.set_width(_console_width)
|
|
363
374
|
return _console_width
|
|
364
375
|
|
|
365
376
|
|
|
366
|
-
def gui_console_height() -> int:
|
|
367
|
-
"""
|
|
377
|
+
def gui_console_height(height: int | None = None) -> int:
|
|
378
|
+
"""Get or set the console height in lines.
|
|
379
|
+
|
|
380
|
+
When *height* is provided, updates the active GUI console (if any).
|
|
381
|
+
Always returns the current height.
|
|
382
|
+
"""
|
|
383
|
+
global _console_height
|
|
384
|
+
if height is not None:
|
|
385
|
+
import execsql.state as _state
|
|
386
|
+
|
|
387
|
+
_console_height = int(height)
|
|
388
|
+
if _state.gui_console is not None and hasattr(_state.gui_console, "set_height"):
|
|
389
|
+
_state.gui_console.set_height(_console_height)
|
|
368
390
|
return _console_height
|
|
369
391
|
|
|
370
392
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: execsql2
|
|
3
|
-
Version: 2.11.
|
|
3
|
+
Version: 2.11.1
|
|
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
|
|
@@ -220,8 +220,11 @@ execsql script.sql # read connection from config file
|
|
|
220
220
|
| `-v {0,1,2,3}` | GUI level (0=none, 1=password, 2=selection, 3=full) |
|
|
221
221
|
| `-w` | Skip password prompt when a username is supplied |
|
|
222
222
|
| `--dsn URL` | Connection string (e.g. `postgresql://user:pass@host/db`) |
|
|
223
|
+
| `--output-dir DIR` | Default base directory for EXPORT output files |
|
|
223
224
|
| `--dry-run` | Parse the script and report commands without executing |
|
|
224
225
|
| `--lint` | Static analysis: check structure and warn on issues (no DB) |
|
|
226
|
+
| `--ping` | Test database connectivity and exit |
|
|
227
|
+
| `--profile` | Show per-statement timing summary after execution |
|
|
225
228
|
| `--progress` | Show a progress bar for long-running IMPORT operations |
|
|
226
229
|
| `--debug` | Start in step-through debug mode (REPL pauses before each stmt) |
|
|
227
230
|
| `--dump-keywords` | Print metacommand keywords as JSON and exit |
|
|
@@ -298,7 +301,7 @@ execsql-format --check scripts/
|
|
|
298
301
|
```yaml
|
|
299
302
|
repos:
|
|
300
303
|
- repo: https://github.com/geocoug/execsql
|
|
301
|
-
rev: v2.
|
|
304
|
+
rev: v2.11.0
|
|
302
305
|
hooks:
|
|
303
306
|
- id: execsql-format
|
|
304
307
|
args: [--in-place]
|
|
@@ -7,13 +7,13 @@ execsql/format.py,sha256=-6iknDddqbkapMo4NKmT5LAynDLqMW5kHgDWRg0KSws,11990
|
|
|
7
7
|
execsql/models.py,sha256=DxkGp9iWbuZDWPGmnxZp9mvEeyOwxEJNx94fxQQiLfQ,13538
|
|
8
8
|
execsql/parser.py,sha256=mbNSMiAMR1NvNvFtQAZq6nxBOupMGJZXSimLWLtZeNs,15537
|
|
9
9
|
execsql/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
|
-
execsql/state.py,sha256=
|
|
10
|
+
execsql/state.py,sha256=29b3SwG4GirED2KVQc-cCC7Z_-FsGN3fEt9xQNN-Puo,15090
|
|
11
11
|
execsql/types.py,sha256=HVWb4umIB9lpxCGgqk3xy1hoGYPfN39xci5mHF0Izq4,31882
|
|
12
12
|
execsql/cli/__init__.py,sha256=dPKq7KOY7soD1GfBEztoRWcKuDLY5QyhzgC6PuyeyII,16270
|
|
13
13
|
execsql/cli/dsn.py,sha256=svaZtrUXFRL2W5G6FRRiKtR6kehOp7urrVhIx_642Z8,2820
|
|
14
14
|
execsql/cli/help.py,sha256=Sn_TgSJiQeBx-xZH0fuP5OvR_wasSTumjWF9UHfIX5k,5414
|
|
15
|
-
execsql/cli/lint.py,sha256=
|
|
16
|
-
execsql/cli/run.py,sha256=
|
|
15
|
+
execsql/cli/lint.py,sha256=XWuVcEsheZ8ql48VFWqICWEkAUezB2nIePX6SUiKSg8,16109
|
|
16
|
+
execsql/cli/run.py,sha256=eiD_5R2ZL8WzhbW78DBcoSbcibmOXcr3po_aYYSoPwg,30250
|
|
17
17
|
execsql/db/__init__.py,sha256=jTbuafuKOqYtXFR1wvCOoKK5Lr3l1uErfaIbIr6UywI,1063
|
|
18
18
|
execsql/db/access.py,sha256=L79gUnAnnM9EJ_f4k42jr7DI0qGcKtLOnJTlBC7uPm0,17879
|
|
19
19
|
execsql/db/base.py,sha256=hfMFj8fXY0T1aXLvWJHqb0aU4EQUDFOc-YrS29HH8U4,30405
|
|
@@ -44,9 +44,9 @@ execsql/exporters/sqlite.py,sha256=XA0ALLvy-r6Pz1lpOFkWWbvpSP9Hm1tHHiuo_BvPVDk,2
|
|
|
44
44
|
execsql/exporters/templates.py,sha256=T9nk7vJrlxiPGfOWGc79xqqDxK3TCYu0wXq48U02npw,5564
|
|
45
45
|
execsql/exporters/values.py,sha256=HIyud31aux_dbCphfKHEGeZB9fkIPE5PoGXQz817XIE,2520
|
|
46
46
|
execsql/exporters/xls.py,sha256=nPROgxL8XK2oiBVoqN2L-o0j_jynRIMokwB8NpvOBt0,10623
|
|
47
|
-
execsql/exporters/xlsx.py,sha256=
|
|
47
|
+
execsql/exporters/xlsx.py,sha256=Gm8ns_KeqSMu2DONSSJ1DcwPBEjYwpbU7frmX0g5L7c,11487
|
|
48
48
|
execsql/exporters/xml.py,sha256=lqcOM8uKDoCayU42BPSLNH1_2DIHU5D3LtQItREU90c,2564
|
|
49
|
-
execsql/exporters/yaml.py,sha256=
|
|
49
|
+
execsql/exporters/yaml.py,sha256=1Vuc6uMDuLTkCuXCfXWKz4gLkkAVdEXkLs4gEB_67Xo,3110
|
|
50
50
|
execsql/exporters/zip.py,sha256=9-hExltQorONNThiMfxPDYHqHsbTeq9zM9zmtG4oFb8,4410
|
|
51
51
|
execsql/gui/__init__.py,sha256=oCb-cyhLZzVpWJ4WU5HbqEDBrV-lm0ytEwxemrOZyqs,2048
|
|
52
52
|
execsql/gui/base.py,sha256=sfNRkDrf7FhIgMRUOdyZpRLS1Xk9RqNhrV0A1RP6PXU,6068
|
|
@@ -60,12 +60,12 @@ execsql/importers/feather.py,sha256=g2B69d2uv9vmnXcmjFyTVsMP40LYEzFYkhk3gD26mGw,
|
|
|
60
60
|
execsql/importers/ods.py,sha256=MJsdsjropzCvxAA3DDZfAL_AnmZ4yij7DnrjGyDJqHQ,2843
|
|
61
61
|
execsql/importers/xls.py,sha256=e0Zfe47ZiCpA1Ae3XDJ1ko3sCiH3-8U6XLKi6NvD0jQ,3683
|
|
62
62
|
execsql/metacommands/__init__.py,sha256=TT1ARHgHltHqZ7qx4Y62o1h_GOPvUztZKCem-wAE560,11215
|
|
63
|
-
execsql/metacommands/conditions.py,sha256=
|
|
63
|
+
execsql/metacommands/conditions.py,sha256=Fzrk83-pWbFOoKahYdQW7CZjQeh3zByDUbfgpTM_bjQ,29259
|
|
64
64
|
execsql/metacommands/connect.py,sha256=Nsm0D91i3RX-R2rzQQ-Br-gULaI6Uvdn9fqb7DOAVfE,14804
|
|
65
|
-
execsql/metacommands/control.py,sha256=
|
|
65
|
+
execsql/metacommands/control.py,sha256=xNHyTrYUM042OgDarNq7HxslY7JuQs-KOKcb-fHUngM,8510
|
|
66
66
|
execsql/metacommands/data.py,sha256=tRQBGTAuW-eJ2tBNWaoZI9OjTyNNyHJISo7gOdL-sm8,11370
|
|
67
|
-
execsql/metacommands/debug.py,sha256=
|
|
68
|
-
execsql/metacommands/debug_repl.py,sha256=
|
|
67
|
+
execsql/metacommands/debug.py,sha256=pnT24dfvfOx8xFu86mO5czfVCGKbcvgBLyXnqaMWO4w,8184
|
|
68
|
+
execsql/metacommands/debug_repl.py,sha256=XQ09I7HI-drVjfIg4XqsPndvAmZSxpSmXVKjWjLqwE4,9785
|
|
69
69
|
execsql/metacommands/dispatch.py,sha256=1Mae6yqrea6wViFLBsvVt33Zgx4xP8tnhOuB_aQC89c,84054
|
|
70
70
|
execsql/metacommands/io.py,sha256=Duh60caM4go9JczbGYNMKKYpcMimwPzF6EQ_tshKxdE,2971
|
|
71
71
|
execsql/metacommands/io_export.py,sha256=7lkCSnPhXy9FVau9_hT1u68NOVdG2DsWmvUh9hM1QWI,18359
|
|
@@ -77,7 +77,7 @@ execsql/metacommands/script_ext.py,sha256=TUgAldB2LSJAwZrCvDDi804hQ1d9BDQD2GDqHN
|
|
|
77
77
|
execsql/metacommands/system.py,sha256=sUR5kLL7idTVg8WXIMdd-Kv7nkERIiaeL0beWsz8NyY,7293
|
|
78
78
|
execsql/script/__init__.py,sha256=pIo0EJ7-vg67rSMbOvbri_BOUgLoGoSEUfJgxUN7ZS0,3380
|
|
79
79
|
execsql/script/control.py,sha256=s-1eZdGARM6H1FwZ6VDdO_f50j7bvvRtTHesfUm9tbc,6144
|
|
80
|
-
execsql/script/engine.py,sha256=
|
|
80
|
+
execsql/script/engine.py,sha256=1_3qMn6a1nD4oYBBRNlwMU_YwZ4f2Om6-CjUGksJT4A,41087
|
|
81
81
|
execsql/script/variables.py,sha256=MOT9XEHucpuuuHQZM5bklxGMBQcwHzwTBxd0q3aO0XY,11641
|
|
82
82
|
execsql/utils/__init__.py,sha256=0uR6JwVJQRX3vceByNBduCAf5dd5assKjeqJUWvpZoA,278
|
|
83
83
|
execsql/utils/auth.py,sha256=onXzNkNZQZxGC5w7eey06sjvAIAX_Lf9g7nUJtcsel0,7009
|
|
@@ -85,30 +85,30 @@ execsql/utils/crypto.py,sha256=2OnBWwn9bCBGc1ZkyRv16TvhottoCNYtXqgbE3mG3Sg,2960
|
|
|
85
85
|
execsql/utils/datetime.py,sha256=V_itd5vVvUPjT86P_z_hh4mlerMDGhDzI5MwPMDBaI4,7715
|
|
86
86
|
execsql/utils/errors.py,sha256=YKhYD27-3timuZavc2vIrRIfHa71vzih-KVPsAKgvkU,8163
|
|
87
87
|
execsql/utils/fileio.py,sha256=F6M4osE0Mb2ycTcvwwcYnhBXH1L36v6d7Oxdab6J16s,24110
|
|
88
|
-
execsql/utils/gui.py,sha256=
|
|
88
|
+
execsql/utils/gui.py,sha256=UFtwrXPNqNvZCJFCbumZ1aG2d9B-vyaJXIG83fDHteo,18409
|
|
89
89
|
execsql/utils/mail.py,sha256=75A1cMnEfyP0_QMMWuSLv8hrcIjc9cGBCrttLpr2TXQ,5372
|
|
90
90
|
execsql/utils/numeric.py,sha256=xh02ANSRk3nUpQ-rtm66ILoMqoi7HtzCoRMIOT9U8QI,1570
|
|
91
91
|
execsql/utils/regex.py,sha256=diEzTZqU_HHwVMadPAvN1Vgzhl7I03eVaEFGCXyGGL8,3770
|
|
92
92
|
execsql/utils/strings.py,sha256=5Dvzrk-9SIw2lpxXZQkiJbNyo1sy7iXXAtSULlZ0KG8,8488
|
|
93
93
|
execsql/utils/timer.py,sha256=eDYf5VzCNFk7oo90InJucUm3XcBdhYMogjZMqeg9xzc,1899
|
|
94
|
-
execsql2-2.11.
|
|
95
|
-
execsql2-2.11.
|
|
96
|
-
execsql2-2.11.
|
|
97
|
-
execsql2-2.11.
|
|
98
|
-
execsql2-2.11.
|
|
99
|
-
execsql2-2.11.
|
|
100
|
-
execsql2-2.11.
|
|
101
|
-
execsql2-2.11.
|
|
102
|
-
execsql2-2.11.
|
|
103
|
-
execsql2-2.11.
|
|
104
|
-
execsql2-2.11.
|
|
105
|
-
execsql2-2.11.
|
|
106
|
-
execsql2-2.11.
|
|
107
|
-
execsql2-2.11.
|
|
108
|
-
execsql2-2.11.
|
|
109
|
-
execsql2-2.11.
|
|
110
|
-
execsql2-2.11.
|
|
111
|
-
execsql2-2.11.
|
|
112
|
-
execsql2-2.11.
|
|
113
|
-
execsql2-2.11.
|
|
114
|
-
execsql2-2.11.
|
|
94
|
+
execsql2-2.11.1.data/data/execsql2_extras/README.md,sha256=sxwVyU0ZahCfANv56LahkyuM505kFjrMhe-1SvWE69E,4845
|
|
95
|
+
execsql2-2.11.1.data/data/execsql2_extras/config_settings.sqlite,sha256=aY5cxR7Q7J6zJ4bC9lu5mHUrhy211Cq3MNKPQVCt02E,20480
|
|
96
|
+
execsql2-2.11.1.data/data/execsql2_extras/example_config_prompt.sql,sha256=SY3Jxn1qcVm4kPW9xmmTfknHfvURXmeEYTbRjYrjGSw,7487
|
|
97
|
+
execsql2-2.11.1.data/data/execsql2_extras/execsql.conf,sha256=_45iJ-KWZnB8uMW_gEg067MM5pmGJ-dVl7VbAZMunAE,9530
|
|
98
|
+
execsql2-2.11.1.data/data/execsql2_extras/make_config_db.sql,sha256=WwyC6dK-Eh5CAVppiBCDHqiI1_wEI9U95Ytpr4lsZkg,8726
|
|
99
|
+
execsql2-2.11.1.data/data/execsql2_extras/md_compare.sql,sha256=B8Wd7LZ0vnMY2qvA139JIEBkPObgRH2i5xj6PejTQt8,24092
|
|
100
|
+
execsql2-2.11.1.data/data/execsql2_extras/md_glossary.sql,sha256=DJRHcU5NbFpxTTX-IwH3yRlsboj1q6BBGrUAHKn4Cuo,10796
|
|
101
|
+
execsql2-2.11.1.data/data/execsql2_extras/md_upsert.sql,sha256=v_7GbWh_N1mBTmw3gvTrkagOVp2q0KmXvM8hE-DlFxY,112524
|
|
102
|
+
execsql2-2.11.1.data/data/execsql2_extras/pg_compare.sql,sha256=9dWa8hnfy5dVJI-z2iGpd9JzQmI4j2ziMlEdpnr66ro,24352
|
|
103
|
+
execsql2-2.11.1.data/data/execsql2_extras/pg_glossary.sql,sha256=pKjIIDsROAgJq2H-1qNEcRMAWManivcZ_AEVHzUUlic,9908
|
|
104
|
+
execsql2-2.11.1.data/data/execsql2_extras/pg_upsert.sql,sha256=k7AFiGTLBy3nf-qO5QIaZrEYTAKvdxxU3JDLx9jqkzs,108315
|
|
105
|
+
execsql2-2.11.1.data/data/execsql2_extras/script_template.sql,sha256=1Estacb_vm1FgK41k_G9nuduP1yiA-fQ1Kn4Z4mv5Ao,11153
|
|
106
|
+
execsql2-2.11.1.data/data/execsql2_extras/ss_compare.sql,sha256=TsVxWm3cEpR5-EiMYXNhtaY0arSNeKZhsJdHdLA7xeI,24833
|
|
107
|
+
execsql2-2.11.1.data/data/execsql2_extras/ss_glossary.sql,sha256=cLM7nN8JOIu9ZVP9oY9qdSK3hrnWJiDcX6nZmQQbQWI,13065
|
|
108
|
+
execsql2-2.11.1.data/data/execsql2_extras/ss_upsert.sql,sha256=BCqmBykXBF-BpCgOFeG1qhf2XfScKsxPD17wd1hYfHw,120647
|
|
109
|
+
execsql2-2.11.1.dist-info/METADATA,sha256=cGmNeSCzZvJFmoCzDbMs_M3MjYP6YCZgQF0vNpIknVk,17381
|
|
110
|
+
execsql2-2.11.1.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
|
|
111
|
+
execsql2-2.11.1.dist-info/entry_points.txt,sha256=sUOxkM-dN1eBGGpSpDLsAaE0yNXYQKWZAfxPOlMkQyk,90
|
|
112
|
+
execsql2-2.11.1.dist-info/licenses/LICENSE.txt,sha256=LBdhuxejF8_bLCHZ2kWfmDXpDGUu914Gbd6_3JjCRe0,676
|
|
113
|
+
execsql2-2.11.1.dist-info/licenses/NOTICE,sha256=sqVrM73Ys9zfvWC_P797lHfTnoPW_ETeBSrUTFaob0A,339
|
|
114
|
+
execsql2-2.11.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{execsql2-2.11.0.data → execsql2-2.11.1.data}/data/execsql2_extras/example_config_prompt.sql
RENAMED
|
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
|