execsql2 2.13.2__py3-none-any.whl → 2.14.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/gui/base.py +52 -1
- execsql/gui/console.py +86 -9
- execsql/gui/desktop.py +261 -39
- execsql/gui/tui.py +325 -51
- execsql/metacommands/connect.py +5 -1
- execsql/metacommands/dispatch.py +49 -6
- execsql/metacommands/io_export.py +2 -2
- execsql/metacommands/prompt.py +6 -11
- {execsql2-2.13.2.dist-info → execsql2-2.14.1.dist-info}/METADATA +1 -1
- {execsql2-2.13.2.dist-info → execsql2-2.14.1.dist-info}/RECORD +29 -29
- {execsql2-2.13.2.data → execsql2-2.14.1.data}/data/execsql2_extras/README.md +0 -0
- {execsql2-2.13.2.data → execsql2-2.14.1.data}/data/execsql2_extras/config_settings.sqlite +0 -0
- {execsql2-2.13.2.data → execsql2-2.14.1.data}/data/execsql2_extras/example_config_prompt.sql +0 -0
- {execsql2-2.13.2.data → execsql2-2.14.1.data}/data/execsql2_extras/execsql.conf +0 -0
- {execsql2-2.13.2.data → execsql2-2.14.1.data}/data/execsql2_extras/make_config_db.sql +0 -0
- {execsql2-2.13.2.data → execsql2-2.14.1.data}/data/execsql2_extras/md_compare.sql +0 -0
- {execsql2-2.13.2.data → execsql2-2.14.1.data}/data/execsql2_extras/md_glossary.sql +0 -0
- {execsql2-2.13.2.data → execsql2-2.14.1.data}/data/execsql2_extras/md_upsert.sql +0 -0
- {execsql2-2.13.2.data → execsql2-2.14.1.data}/data/execsql2_extras/pg_compare.sql +0 -0
- {execsql2-2.13.2.data → execsql2-2.14.1.data}/data/execsql2_extras/pg_glossary.sql +0 -0
- {execsql2-2.13.2.data → execsql2-2.14.1.data}/data/execsql2_extras/pg_upsert.sql +0 -0
- {execsql2-2.13.2.data → execsql2-2.14.1.data}/data/execsql2_extras/script_template.sql +0 -0
- {execsql2-2.13.2.data → execsql2-2.14.1.data}/data/execsql2_extras/ss_compare.sql +0 -0
- {execsql2-2.13.2.data → execsql2-2.14.1.data}/data/execsql2_extras/ss_glossary.sql +0 -0
- {execsql2-2.13.2.data → execsql2-2.14.1.data}/data/execsql2_extras/ss_upsert.sql +0 -0
- {execsql2-2.13.2.dist-info → execsql2-2.14.1.dist-info}/WHEEL +0 -0
- {execsql2-2.13.2.dist-info → execsql2-2.14.1.dist-info}/entry_points.txt +0 -0
- {execsql2-2.13.2.dist-info → execsql2-2.14.1.dist-info}/licenses/LICENSE.txt +0 -0
- {execsql2-2.13.2.dist-info → execsql2-2.14.1.dist-info}/licenses/NOTICE +0 -0
execsql/metacommands/dispatch.py
CHANGED
|
@@ -857,7 +857,7 @@ def build_dispatch_table() -> MetaCommandList:
|
|
|
857
857
|
x_write_warnings,
|
|
858
858
|
)
|
|
859
859
|
mcl.add(
|
|
860
|
-
r"^\s*CONFIG\s+GUI_LEVEL\s+(?P<level>[0-
|
|
860
|
+
r"^\s*CONFIG\s+GUI_LEVEL\s+(?P<level>[0-3])\s*$",
|
|
861
861
|
x_gui_level,
|
|
862
862
|
description="GUI_LEVEL",
|
|
863
863
|
category="config_option",
|
|
@@ -1443,7 +1443,7 @@ def build_dispatch_table() -> MetaCommandList:
|
|
|
1443
1443
|
ins_table_rxs(
|
|
1444
1444
|
r'^\s*PROMPT\s+ENTER_SUB\s+(?P<match_str>~?\w+)\s+(?:(?P<password>PASSWORD)\s+)?MESSAGE\s+"(?P<message>([^"]|\n)*)"(?:\s+DISPLAY\s+',
|
|
1445
1445
|
r")?(?:\s+TYPE\s+(?P<type>INT|FLOAT|BOOL|IDENT))?(?:\s+(?P<case>LCASE|UCASE))?"
|
|
1446
|
-
r'(?:\s+INITIALLY\s+"(?P<initial>[^"]+)")?(?:\s+HELP\s+"(?P<help>[
|
|
1446
|
+
r'(?:\s+INITIALLY\s+"(?P<initial>[^"]+)")?(?:\s+HELP\s+"(?P<help>[^"]+)")?\s*$',
|
|
1447
1447
|
),
|
|
1448
1448
|
x_prompt_enter,
|
|
1449
1449
|
)
|
|
@@ -1527,6 +1527,7 @@ def build_dispatch_table() -> MetaCommandList:
|
|
|
1527
1527
|
# ------------------------------------------------------------------
|
|
1528
1528
|
# PROMPT COMPARE / PROMPT ASK COMPARE
|
|
1529
1529
|
# ------------------------------------------------------------------
|
|
1530
|
+
# HELP before MESSAGE (documented order)
|
|
1530
1531
|
mcl.add(
|
|
1531
1532
|
ins_table_rxs(
|
|
1532
1533
|
r"^\s*PROMPT\s+COMPARE\s+",
|
|
@@ -1555,6 +1556,33 @@ def build_dispatch_table() -> MetaCommandList:
|
|
|
1555
1556
|
),
|
|
1556
1557
|
x_prompt_compare,
|
|
1557
1558
|
)
|
|
1559
|
+
# HELP after MESSAGE (alternate order)
|
|
1560
|
+
mcl.add(
|
|
1561
|
+
ins_table_rxs(
|
|
1562
|
+
r"^\s*PROMPT\s+COMPARE\s+",
|
|
1563
|
+
ins_table_rxs(
|
|
1564
|
+
r"(?:\s+IN\s+(?P<alias1>\w+))?\s+(?P<orient>AND|BESIDE)\s+",
|
|
1565
|
+
r'(?:\s+IN\s+(?P<alias2>\w+))?\s+(?:PK|KEY)\s*\((?P<pks>(("[A-Z_0-9]+")|[A-Z_0-9]+)'
|
|
1566
|
+
r'(\s*,\s*(("[A-Z_0-9]+")|[A-Z_0-9]+))*)\)\s+MESSAGE\s+"(?P<msg>[^"]*)"\s+HELP\s+(?P<help>[^\s]+)\s*$',
|
|
1567
|
+
suffix="2",
|
|
1568
|
+
),
|
|
1569
|
+
suffix="1",
|
|
1570
|
+
),
|
|
1571
|
+
x_prompt_compare,
|
|
1572
|
+
)
|
|
1573
|
+
mcl.add(
|
|
1574
|
+
ins_table_rxs(
|
|
1575
|
+
r"^\s*PROMPT\s+COMPARE\s+",
|
|
1576
|
+
ins_table_rxs(
|
|
1577
|
+
r"(?:\s+IN\s+(?P<alias1>\w+))?\s+(?P<orient>AND|BESIDE)\s+",
|
|
1578
|
+
r'(?:\s+IN\s+(?P<alias2>\w+))?\s+(?:PK|KEY)\s*\((?P<pks>(("[A-Z_0-9]+")|[A-Z_0-9]+)'
|
|
1579
|
+
r'(\s*,\s*(("[A-Z_0-9]+")|[A-Z_0-9]+))*)\)\s+MESSAGE\s+"(?P<msg>[^"]*)"\s+HELP\s+"(?P<help>[^"]+)"\s*$',
|
|
1580
|
+
suffix="2",
|
|
1581
|
+
),
|
|
1582
|
+
suffix="1",
|
|
1583
|
+
),
|
|
1584
|
+
x_prompt_compare,
|
|
1585
|
+
)
|
|
1558
1586
|
mcl.add(
|
|
1559
1587
|
ins_table_rxs(
|
|
1560
1588
|
r'^\s*PROMPT\s+ASK\s+"(?P<msg>(.|\n)*)"\s+SUB\s+(?P<match>~?\w+)\s+COMPARE\s+',
|
|
@@ -2073,7 +2101,7 @@ def build_dispatch_table() -> MetaCommandList:
|
|
|
2073
2101
|
mcl.add(
|
|
2074
2102
|
ins_table_rxs(
|
|
2075
2103
|
r'^\s*PROMPT\s+MESSAGE\s+"(?P<message>(.|\n)*)"\s+DISPLAY\s+',
|
|
2076
|
-
r"(?:\s+HELP\s+(?P<help>[^\s]+))
|
|
2104
|
+
r"(?:\s+HELP\s+(?P<help>[^\s]+))?\s*$",
|
|
2077
2105
|
),
|
|
2078
2106
|
x_prompt,
|
|
2079
2107
|
description="PROMPT DISPLAY",
|
|
@@ -2082,21 +2110,36 @@ def build_dispatch_table() -> MetaCommandList:
|
|
|
2082
2110
|
mcl.add(
|
|
2083
2111
|
ins_table_rxs(
|
|
2084
2112
|
r'^\s*PROMPT\s+MESSAGE\s+"(?P<message>(.|\n)*)"\s+DISPLAY\s+',
|
|
2085
|
-
r'(?:\s+HELP\s+"(?P<help>[^"]+)")
|
|
2113
|
+
r'(?:\s+HELP\s+"(?P<help>[^"]+)")?\s*$',
|
|
2114
|
+
),
|
|
2115
|
+
x_prompt,
|
|
2116
|
+
)
|
|
2117
|
+
mcl.add(
|
|
2118
|
+
ins_table_rxs(
|
|
2119
|
+
r"^\s*PROMPT\s+DISPLAY\s+",
|
|
2120
|
+
r'\s+MESSAGE\s+"(?P<message>(.|\n)*)"(?:\s+HELP\s+(?P<help>[^\s]+))?\s*$',
|
|
2121
|
+
),
|
|
2122
|
+
x_prompt,
|
|
2123
|
+
)
|
|
2124
|
+
mcl.add(
|
|
2125
|
+
ins_table_rxs(
|
|
2126
|
+
r"^\s*PROMPT\s+DISPLAY\s+",
|
|
2127
|
+
r'\s+MESSAGE\s+"(?P<message>(.|\n)*)"(?:\s+HELP\s+"(?P<help>[^"]+)")?\s*$',
|
|
2086
2128
|
),
|
|
2087
2129
|
x_prompt,
|
|
2088
2130
|
)
|
|
2131
|
+
# PROMPT DISPLAY with HELP after MESSAGE (non-greedy message to avoid capturing HELP)
|
|
2089
2132
|
mcl.add(
|
|
2090
2133
|
ins_table_rxs(
|
|
2091
2134
|
r"^\s*PROMPT\s+DISPLAY\s+",
|
|
2092
|
-
r'\s+MESSAGE\s+"(?P<message>
|
|
2135
|
+
r'\s+MESSAGE\s+"(?P<message>[^"]*)"\s+HELP\s+(?P<help>[^\s]+)\s*$',
|
|
2093
2136
|
),
|
|
2094
2137
|
x_prompt,
|
|
2095
2138
|
)
|
|
2096
2139
|
mcl.add(
|
|
2097
2140
|
ins_table_rxs(
|
|
2098
2141
|
r"^\s*PROMPT\s+DISPLAY\s+",
|
|
2099
|
-
r'\s+MESSAGE\s+"(?P<message>
|
|
2142
|
+
r'\s+MESSAGE\s+"(?P<message>[^"]*)"\s+HELP\s+"(?P<help>[^"]+)"\s*$',
|
|
2100
2143
|
),
|
|
2101
2144
|
x_prompt,
|
|
2102
2145
|
)
|
|
@@ -460,7 +460,7 @@ def x_export_ods_multiple(**kwargs: Any) -> None:
|
|
|
460
460
|
tee = kwargs["tee"]
|
|
461
461
|
tee = bool(tee)
|
|
462
462
|
append = kwargs["append"]
|
|
463
|
-
append = append
|
|
463
|
+
append = bool(append)
|
|
464
464
|
check_dir(outfile)
|
|
465
465
|
write_queries_to_ods(table_list, _state.dbs.current(), outfile, append, tee, desc=description)
|
|
466
466
|
|
|
@@ -473,7 +473,7 @@ def x_export_xlsx_multiple(**kwargs: Any) -> None:
|
|
|
473
473
|
tee = kwargs["tee"]
|
|
474
474
|
tee = bool(tee)
|
|
475
475
|
append = kwargs["append"]
|
|
476
|
-
append = append
|
|
476
|
+
append = bool(append)
|
|
477
477
|
check_dir(outfile)
|
|
478
478
|
write_queries_to_xlsx(table_list, _state.dbs.current(), outfile, append, tee, desc=description)
|
|
479
479
|
|
execsql/metacommands/prompt.py
CHANGED
|
@@ -62,7 +62,6 @@ def x_prompt(**kwargs: Any) -> None:
|
|
|
62
62
|
table = kwargs["table"]
|
|
63
63
|
message = kwargs["message"]
|
|
64
64
|
help_url = unquoted(kwargs["help"])
|
|
65
|
-
free = kwargs["free"] is not None
|
|
66
65
|
sq_name = db.schema_qualified_table_name(schema, table)
|
|
67
66
|
script, line_no = current_script_line()
|
|
68
67
|
cmd = f"select * from {sq_name};"
|
|
@@ -76,16 +75,14 @@ def x_prompt(**kwargs: Any) -> None:
|
|
|
76
75
|
"column_headers": colnames,
|
|
77
76
|
"rowset": rows,
|
|
78
77
|
"help_url": help_url,
|
|
79
|
-
"free": free,
|
|
80
78
|
}
|
|
81
79
|
_state.gui_manager_queue.put(GuiSpec(GUI_DISPLAY, gui_args, return_queue))
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
exit_now(2, None)
|
|
80
|
+
user_response = return_queue.get(block=True)
|
|
81
|
+
btn = user_response["button"]
|
|
82
|
+
if not btn and _state.status.cancel_halt:
|
|
83
|
+
msg = f"Halted from display of {sq_name}"
|
|
84
|
+
_state.exec_log.log_exit_halt(script, line_no, msg)
|
|
85
|
+
exit_now(2, None)
|
|
89
86
|
return None
|
|
90
87
|
|
|
91
88
|
|
|
@@ -119,7 +116,6 @@ def x_prompt_enter(**kwargs: Any) -> None:
|
|
|
119
116
|
"textentrycase": textcase,
|
|
120
117
|
"initialtext": initial,
|
|
121
118
|
"help_url": help_url,
|
|
122
|
-
"free": False,
|
|
123
119
|
}
|
|
124
120
|
_state.gui_manager_queue.put(GuiSpec(GUI_DISPLAY, gui_args, return_queue))
|
|
125
121
|
user_response = return_queue.get(block=True)
|
|
@@ -862,7 +858,6 @@ def x_ask(**kwargs: Any) -> None:
|
|
|
862
858
|
"title": script,
|
|
863
859
|
"message": kwargs["question"],
|
|
864
860
|
"button_list": [("Yes", 1, "y"), ("No", 0, "n")],
|
|
865
|
-
"free": False,
|
|
866
861
|
}
|
|
867
862
|
_state.gui_manager_queue.put(GuiSpec(GUI_DISPLAY, gui_args, return_queue))
|
|
868
863
|
user_response = return_queue.get(block=True)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: execsql2
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.14.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: Homepage, https://execsql2.readthedocs.io
|
|
6
6
|
Project-URL: Repository, https://github.com/geocoug/execsql
|
|
@@ -51,10 +51,10 @@ execsql/exporters/xml.py,sha256=lqcOM8uKDoCayU42BPSLNH1_2DIHU5D3LtQItREU90c,2564
|
|
|
51
51
|
execsql/exporters/yaml.py,sha256=1Vuc6uMDuLTkCuXCfXWKz4gLkkAVdEXkLs4gEB_67Xo,3110
|
|
52
52
|
execsql/exporters/zip.py,sha256=kr0X6VLE_ULGVQtMzfqZZSUmc1Qupxg9HbMOAvnTQvI,4890
|
|
53
53
|
execsql/gui/__init__.py,sha256=oCb-cyhLZzVpWJ4WU5HbqEDBrV-lm0ytEwxemrOZyqs,2048
|
|
54
|
-
execsql/gui/base.py,sha256=
|
|
55
|
-
execsql/gui/console.py,sha256=
|
|
56
|
-
execsql/gui/desktop.py,sha256=
|
|
57
|
-
execsql/gui/tui.py,sha256=
|
|
54
|
+
execsql/gui/base.py,sha256=Kwguh8CGgs5kRFgnpaIEt1yOMP7ejj7TwXrtbiRpnm0,7776
|
|
55
|
+
execsql/gui/console.py,sha256=5vDTHx9jJHQZ47WdKMWOTqNHgeG_CbD7e1o9QCYS0X8,18040
|
|
56
|
+
execsql/gui/desktop.py,sha256=TWehraUdvBBj9SiBmUuW8DOHdWq-Kux0RJ6fKBt_xyA,53182
|
|
57
|
+
execsql/gui/tui.py,sha256=AQ0vtITTIbxwGfa21FfsDZ6nj2wMsVaiRkPyfZ5-udw,62718
|
|
58
58
|
execsql/importers/__init__.py,sha256=dDsxSVeQYXBvm9yGqN3QswyGbLWTwt08pvUuRJgZhl4,289
|
|
59
59
|
execsql/importers/base.py,sha256=FGVz3ntN6xHL99rQixlQj3tAf570K_oU83UtbYE1lJg,4124
|
|
60
60
|
execsql/importers/csv.py,sha256=Mu848WNzuhVO1ade-WurPyxqGOuVNRO8UwRF3-bav_I,4845
|
|
@@ -64,17 +64,17 @@ execsql/importers/ods.py,sha256=MJsdsjropzCvxAA3DDZfAL_AnmZ4yij7DnrjGyDJqHQ,2843
|
|
|
64
64
|
execsql/importers/xls.py,sha256=e0Zfe47ZiCpA1Ae3XDJ1ko3sCiH3-8U6XLKi6NvD0jQ,3683
|
|
65
65
|
execsql/metacommands/__init__.py,sha256=3Kz-VasFS9B-C-UdHOjr3RMXjheMeYHe6qYBwp5e7wE,11434
|
|
66
66
|
execsql/metacommands/conditions.py,sha256=Fzrk83-pWbFOoKahYdQW7CZjQeh3zByDUbfgpTM_bjQ,29259
|
|
67
|
-
execsql/metacommands/connect.py,sha256=
|
|
67
|
+
execsql/metacommands/connect.py,sha256=U17ByjVmwrLN5DB7Ea9lTLyFJr8On2c9LfPO1Wc4l4U,14890
|
|
68
68
|
execsql/metacommands/control.py,sha256=PAZFK1ck5SDSm5QdFV1ctif3KpEiyYWIXdDceRWgQ6k,8513
|
|
69
69
|
execsql/metacommands/data.py,sha256=tRQBGTAuW-eJ2tBNWaoZI9OjTyNNyHJISo7gOdL-sm8,11370
|
|
70
70
|
execsql/metacommands/debug.py,sha256=pnT24dfvfOx8xFu86mO5czfVCGKbcvgBLyXnqaMWO4w,8184
|
|
71
|
-
execsql/metacommands/dispatch.py,sha256=
|
|
71
|
+
execsql/metacommands/dispatch.py,sha256=rY259pp5Bcq1q0N86NvxFgmFyOhYrNtgByzrNjocipI,87083
|
|
72
72
|
execsql/metacommands/io.py,sha256=vlGBje5sgnqeilooMdhJDgSRIhysHy5_7LrKtik9Xjs,3011
|
|
73
|
-
execsql/metacommands/io_export.py,sha256=
|
|
73
|
+
execsql/metacommands/io_export.py,sha256=c04uiFX3KcPqHUNiId0gF4sWBVZizZL95pL0aSr7mrM,18347
|
|
74
74
|
execsql/metacommands/io_fileops.py,sha256=RrcJTh_cgj7bJ-bezjo0yNl-fN3CoWV-aZ71z1KHYZs,9803
|
|
75
75
|
execsql/metacommands/io_import.py,sha256=fzShl_m74DWt2_SmxlxWQe00H53hDIrOYZtvvqKBhSM,14231
|
|
76
76
|
execsql/metacommands/io_write.py,sha256=NpL2aYGfBpbqmPpYsqniYltYfd_SCA1EQz3_4qSdNbo,8279
|
|
77
|
-
execsql/metacommands/prompt.py,sha256=
|
|
77
|
+
execsql/metacommands/prompt.py,sha256=E2e7q4pxbl_wEBrhco0B2gm5hO_HG3rNIF75PLdTgGg,36767
|
|
78
78
|
execsql/metacommands/script_ext.py,sha256=TUgAldB2LSJAwZrCvDDi804hQ1d9BDQD2GDqHNPVOcM,2280
|
|
79
79
|
execsql/metacommands/system.py,sha256=AeyxbMLZVOi2nThbHiZ2F_UAIrZ1r4kjI3G80TtnSD4,7385
|
|
80
80
|
execsql/metacommands/upsert.py,sha256=P2935aQHDZPiVwnXi0fGQ7Guxrm-Sy_YunyuSqVSegI,15880
|
|
@@ -94,24 +94,24 @@ execsql/utils/numeric.py,sha256=xh02ANSRk3nUpQ-rtm66ILoMqoi7HtzCoRMIOT9U8QI,1570
|
|
|
94
94
|
execsql/utils/regex.py,sha256=diEzTZqU_HHwVMadPAvN1Vgzhl7I03eVaEFGCXyGGL8,3770
|
|
95
95
|
execsql/utils/strings.py,sha256=5Dvzrk-9SIw2lpxXZQkiJbNyo1sy7iXXAtSULlZ0KG8,8488
|
|
96
96
|
execsql/utils/timer.py,sha256=eDYf5VzCNFk7oo90InJucUm3XcBdhYMogjZMqeg9xzc,1899
|
|
97
|
-
execsql2-2.
|
|
98
|
-
execsql2-2.
|
|
99
|
-
execsql2-2.
|
|
100
|
-
execsql2-2.
|
|
101
|
-
execsql2-2.
|
|
102
|
-
execsql2-2.
|
|
103
|
-
execsql2-2.
|
|
104
|
-
execsql2-2.
|
|
105
|
-
execsql2-2.
|
|
106
|
-
execsql2-2.
|
|
107
|
-
execsql2-2.
|
|
108
|
-
execsql2-2.
|
|
109
|
-
execsql2-2.
|
|
110
|
-
execsql2-2.
|
|
111
|
-
execsql2-2.
|
|
112
|
-
execsql2-2.
|
|
113
|
-
execsql2-2.
|
|
114
|
-
execsql2-2.
|
|
115
|
-
execsql2-2.
|
|
116
|
-
execsql2-2.
|
|
117
|
-
execsql2-2.
|
|
97
|
+
execsql2-2.14.1.data/data/execsql2_extras/README.md,sha256=sxwVyU0ZahCfANv56LahkyuM505kFjrMhe-1SvWE69E,4845
|
|
98
|
+
execsql2-2.14.1.data/data/execsql2_extras/config_settings.sqlite,sha256=aY5cxR7Q7J6zJ4bC9lu5mHUrhy211Cq3MNKPQVCt02E,20480
|
|
99
|
+
execsql2-2.14.1.data/data/execsql2_extras/example_config_prompt.sql,sha256=SY3Jxn1qcVm4kPW9xmmTfknHfvURXmeEYTbRjYrjGSw,7487
|
|
100
|
+
execsql2-2.14.1.data/data/execsql2_extras/execsql.conf,sha256=_45iJ-KWZnB8uMW_gEg067MM5pmGJ-dVl7VbAZMunAE,9530
|
|
101
|
+
execsql2-2.14.1.data/data/execsql2_extras/make_config_db.sql,sha256=WwyC6dK-Eh5CAVppiBCDHqiI1_wEI9U95Ytpr4lsZkg,8726
|
|
102
|
+
execsql2-2.14.1.data/data/execsql2_extras/md_compare.sql,sha256=B8Wd7LZ0vnMY2qvA139JIEBkPObgRH2i5xj6PejTQt8,24092
|
|
103
|
+
execsql2-2.14.1.data/data/execsql2_extras/md_glossary.sql,sha256=DJRHcU5NbFpxTTX-IwH3yRlsboj1q6BBGrUAHKn4Cuo,10796
|
|
104
|
+
execsql2-2.14.1.data/data/execsql2_extras/md_upsert.sql,sha256=v_7GbWh_N1mBTmw3gvTrkagOVp2q0KmXvM8hE-DlFxY,112524
|
|
105
|
+
execsql2-2.14.1.data/data/execsql2_extras/pg_compare.sql,sha256=9dWa8hnfy5dVJI-z2iGpd9JzQmI4j2ziMlEdpnr66ro,24352
|
|
106
|
+
execsql2-2.14.1.data/data/execsql2_extras/pg_glossary.sql,sha256=pKjIIDsROAgJq2H-1qNEcRMAWManivcZ_AEVHzUUlic,9908
|
|
107
|
+
execsql2-2.14.1.data/data/execsql2_extras/pg_upsert.sql,sha256=k7AFiGTLBy3nf-qO5QIaZrEYTAKvdxxU3JDLx9jqkzs,108315
|
|
108
|
+
execsql2-2.14.1.data/data/execsql2_extras/script_template.sql,sha256=1Estacb_vm1FgK41k_G9nuduP1yiA-fQ1Kn4Z4mv5Ao,11153
|
|
109
|
+
execsql2-2.14.1.data/data/execsql2_extras/ss_compare.sql,sha256=TsVxWm3cEpR5-EiMYXNhtaY0arSNeKZhsJdHdLA7xeI,24833
|
|
110
|
+
execsql2-2.14.1.data/data/execsql2_extras/ss_glossary.sql,sha256=cLM7nN8JOIu9ZVP9oY9qdSK3hrnWJiDcX6nZmQQbQWI,13065
|
|
111
|
+
execsql2-2.14.1.data/data/execsql2_extras/ss_upsert.sql,sha256=BCqmBykXBF-BpCgOFeG1qhf2XfScKsxPD17wd1hYfHw,120647
|
|
112
|
+
execsql2-2.14.1.dist-info/METADATA,sha256=4H299Jz_SqnoHxbxOxobQ42CCgTOv0ynOarTVEQxMqo,17566
|
|
113
|
+
execsql2-2.14.1.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
|
|
114
|
+
execsql2-2.14.1.dist-info/entry_points.txt,sha256=sUOxkM-dN1eBGGpSpDLsAaE0yNXYQKWZAfxPOlMkQyk,90
|
|
115
|
+
execsql2-2.14.1.dist-info/licenses/LICENSE.txt,sha256=LBdhuxejF8_bLCHZ2kWfmDXpDGUu914Gbd6_3JjCRe0,676
|
|
116
|
+
execsql2-2.14.1.dist-info/licenses/NOTICE,sha256=sqVrM73Ys9zfvWC_P797lHfTnoPW_ETeBSrUTFaob0A,339
|
|
117
|
+
execsql2-2.14.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{execsql2-2.13.2.data → execsql2-2.14.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
|