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
Allow making a read-only Reader. This is useful at least during debugging, to prevent accidentally changing an old database in any way (including migrations).
This should use the lowest-level mechanism available on the storage, e.g. ?mode=ro for SQLite; alas, URI filenames are required for this:
Traceback (most recent call last):
...
File ".../reader/_storage.py", line 413, in __init__self.factory = LocalConnectionFactory(
File ".../reader/_sqlite_utils.py", line 453, in __init__raiseNotImplementedError("_is_private() does not work for uri=True")
NotImplementedError: _is_private() does not work for uri=True
The text was updated successfully, but these errors were encountered:
Allow making a read-only Reader. This is useful at least during debugging, to prevent accidentally changing an old database in any way (including migrations).
This should use the lowest-level mechanism available on the storage, e.g.
?mode=ro
for SQLite; alas, URI filenames are required for this:The text was updated successfully, but these errors were encountered: