mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2025-12-14 02:27:09 +00:00
Module documentation docstrings
This commit is contained in:
18
dump.py
18
dump.py
@@ -1,11 +1,15 @@
|
||||
# Mimic the sqlite3 console shell's .dump command
|
||||
# Author: Paul Kippes <kippesp@gmail.com>
|
||||
"""Used to create the SQL dump which mimics the import of cave and expo
|
||||
data from files.
|
||||
|
||||
# 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."
|
||||
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):
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user