]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
Support SQLite URIs
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 20 Sep 2019 13:25:40 +0000 (09:25 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sat, 21 Sep 2019 20:41:47 +0000 (16:41 -0400)
commitadb495503dab660f014cad0200491c854d2f6a50
tree574add6718deee3da9f4dc9d3ad57057420ad1fd
parent6cfbd5fefef51374d3c60fb58e094db00643faa0
Support SQLite URIs

Added support for sqlite "URI" connections, which allow for sqlite-specific
flags to be passed in the query string such as "read only" for Python
sqlite3 drivers that support this.

Fixes: #4863
Change-Id: I7740b55ee8f2ede72a5c49ee94a7540e4d0250f2
doc/build/changelog/unreleased_13/4863.rst [new file with mode: 0644]
lib/sqlalchemy/dialects/sqlite/pysqlite.py
lib/sqlalchemy/util/langhelpers.py
test/dialect/test_sqlite.py