Rqdb

Latest version: v1.6.3

Safety actively analyzes 723954 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 2 of 4

1.3.0

Adds a new function, `cursor.explain`, which acts similiarly to `cursor.execute`, except it prefixes the query with `EXPLAIN QUERY PLAN` (if not already an EXPLAIN query) and returns a string result containing the formatted query plan (formatted similarly to the sqlite3 API).

Also supports writing the query plan to stdout via the query parameter `out='print'`, or returning the tree representation with `out='plan'`, or writing to any bytes writable stream. For the async version, supports both synchronous writes and asynchronous writes, similar to backup.

py
import rqdb

conn = rqdb.connect(['127.0.0.1:4001'])
cursor = conn.cursor()
cursor.execute('CREATE TABLE persons (id INTEGER PRIMARY KEY, uid TEXT UNIQUE NOT NULL, given_name TEXT NOT NULL, family_name TEXT NOT NULL)')
cursor.explain("SELECT id FROM persons WHERE TRIM(given_name || ' ' || family_name) LIKE ?", ('john d%',), out='print')
--SCAN persons
cursor.execute("CREATE INDEX persons_name_idx ON persons(TRIM(given_name || ' ' || family_name) COLLATE NOCASE)")
cursor.explain("SELECT id FROM persons WHERE TRIM(given_name || ' ' || family_name) LIKE ?", ('john d%',), out='print')
--SEARCH persons USING INDEX persons_name_idx (<expr>>? AND <expr><?)

1.2.2

Sends EXPLAIN queries to the /db/query endpoint so you can read the results

1.2.1

This should ensure that io.BytesIO, open, and aiofiles.open
are all acceptable where appropriate to backup() functions
without typing errors

This also bumps the pypi minor version to 2 to be more consistent with our github
releases which will now match the pypi version

1.2.0

Improves typing support. I also note that at some point there became a difference between the versioning used on Github releases and pypi, where the pypi releases are 1 minor version lower. This corresponds to v1.1.0 on pypi and at some point I may reconcile the two by bumping pypi's version

1.1.11

This version adds support for more complicated common table expressions, such as those with schemas or with materialization hints. This library needs to know the basics of this syntax in order to correctly direct requests to either a read endpoint or write endpoint.

1.1.11b

This is no different to the previous version except for requirements.txt, which is used exclusively for the build chain

Page 2 of 4

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.