Home
About
Blog
Products
Forum
Support
Contact
Sunbelt Computer Software
PL/B Language Development and Support
Home
About
Blog
Products
Forum
Support
Contact
vscode-python-web-wasm/python/lib/python3.11/sqlite3/dump.py at main · microsoft/vscode-python-web-wasm · GitHub
Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
microsoft
/
vscode-python-web-wasm
Public
Notifications
You must be signed in to change notification settings
Fork
15
Star
100
Code
Issues
7
Pull requests
4
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Files
Expand file tree
main
Breadcrumbs
vscode-python-web-wasm
/
python
/
lib
/
python3.11
/
sqlite3
/
dump.py
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
82 lines (73 loc) · 3.21 KB
main
Breadcrumbs
vscode-python-web-wasm
/
python
/
lib
/
python3.11
/
sqlite3
/
dump.py
Copy path
Top
File metadata and controls
Code
Blame
82 lines (73 loc) · 3.21 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# Mimic the sqlite3 console shell's .dump command
# Author: Paul Kippes <kippesp@gmail.com>
# Every identifier in sql is quoted based on a comment in sqlite
# documentation "SQLite adds new keywords from time to time when it
# takes on new features. So to prevent your code from being broken by
# future enhancements, you should normally quote any identifier that
# is an English language word, even if you do not have to."
def
_iterdump
(
connection
):
"""
Returns an iterator to the dump of the database in an SQL text format.
Used to produce an SQL dump of the database. Useful to save an in-memory
database for later restoration. This function should not be called
directly but instead called from the Connection method, iterdump().
"""
cu
=
connection
.
cursor
()
yield
(
'BEGIN TRANSACTION;'
)
# sqlite_master table contains the SQL CREATE statements for the database.
q
=
"""
SELECT "name", "type", "sql"
FROM "sqlite_master"
WHERE "sql" NOT NULL AND
"type" == 'table'
ORDER BY "name"
"""
schema_res
=
cu
.
execute
(
q
)
sqlite_sequence
=
[]
for
table_name
,
type
,
sql
in
schema_res
.
fetchall
():
if
table_name
==
'sqlite_sequence'
:
rows
=
cu
.
execute
(
'SELECT * FROM "sqlite_sequence";'
).
fetchall
()
sqlite_sequence
=
[
'DELETE FROM "sqlite_sequence"'
]
sqlite_sequence
+=
[
f'INSERT INTO "sqlite_sequence" VALUES(
\'
{
row
[
0
]
}
\'
,
{
row
[
1
]
}
)'
for
row
in
rows
]
continue
elif
table_name
==
'sqlite_stat1'
:
yield
(
'ANALYZE "sqlite_master";'
)
elif
table_name
.
startswith
(
'sqlite_'
):
continue
# NOTE: Virtual table support not implemented
#elif sql.startswith('CREATE VIRTUAL TABLE'):
# qtable = table_name.replace("'", "''")
# yield("INSERT INTO sqlite_master(type,name,tbl_name,rootpage,sql)"\
# "VALUES('table','{0}','{0}',0,'{1}');".format(
# qtable,
# sql.replace("''")))
else
:
yield
(
'{0};'
.
format
(
sql
))
# Build the insert statement for each row of the current table
table_name_ident
=
table_name
.
replace
(
'"'
,
'""'
)
res
=
cu
.
execute
(
'PRAGMA table_info("{0}")'
.
format
(
table_name_ident
))
column_names
=
[
str
(
table_info
[
1
])
for
table_info
in
res
.
fetchall
()]
q
=
"""SELECT 'INSERT INTO "{0}" VALUES({1})' FROM "{0}";"""
.
format
(
table_name_ident
,
","
.
join
(
"""'||quote("{0}")||'"""
.
format
(
col
.
replace
(
'"'
,
'""'
))
for
col
in
column_names
))
query_res
=
cu
.
execute
(
q
)
for
row
in
query_res
:
yield
(
"{0};"
.
format
(
row
[
0
]))
# Now when the type is 'index', 'trigger', or 'view'
q
=
"""
SELECT "name", "type", "sql"
FROM "sqlite_master"
WHERE "sql" NOT NULL AND
"type" IN ('index', 'trigger', 'view')
"""
schema_res
=
cu
.
execute
(
q
)
for
name
,
type
,
sql
in
schema_res
.
fetchall
():
yield
(
'{0};'
.
format
(
sql
))
# gh-79009: Yield statements concerning the sqlite_sequence table at the
# end of the transaction.
for
row
in
sqlite_sequence
:
yield
(
'{0};'
.
format
(
row
))
yield
(
'COMMIT;'
)
You can’t perform that action at this time.