8000 bpo-46402: Promote SQLite URI tricks in `sqlite3` docs by erlend-aasland · Pull Request #30660 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-46402: Promote SQLite URI tricks in sqlite3 docs #30660

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jan 18, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fetchall() returns (potentially) multiple rows
  • Loading branch information
Erlend E. Aasland committed Jan 18, 2022
commit 461cbf37b4e339b62bf02b58ffc4b256a4fcc010
2 changes: 1 addition & 1 deletion Doc/library/sqlite3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ Module functions and constants
con1 = sqlite3.connect("file:mem1?mode=memory&cache=shared", uri=True)
con2 = sqlite3.connect("file:mem1?mode=memory&cache=shared", uri=True)
con1.executescript("create table t(t); insert into t values(28);")
row = con2.execute("select * from t").fetchall()
rows = con2.execute("select * from t").fetchall()

More information about this feature, including a list of recognized
parameters, can be found in the
Expand Down
0