home / github / issue_comments

Menu
  • Search all tables
  • GraphQL API

issue_comments: 1606297356

This data as json

html_url issue_url id node_id user created_at updated_at author_association body reactions issue performed_via_github_app
https://github.com/simonw/sqlite-utils/pull/560#issuecomment-1606297356 https://api.github.com/repos/simonw/sqlite-utils/issues/560 1606297356 IC_kwDOCGYnMM5fvicM 9599 2023-06-25T22:42:41Z 2023-06-25T22:42:41Z OWNER

Yes that does seem to do the trick: ```pycon

import sqlean db = sqlean.connect("/tmp/4.db") db.execute('PRAGMA journal_mode;').fetchall() [('delete',)] db.isolation_level '' db.execute('PRAGMA journal_mode=wal;') Traceback (most recent call last): File "<stdin>", line 1, in <module> sqlean.dbapi2.OperationalError: cannot change into wal mode from within a transaction db.isolation_level = None db.isolation_level db.execute('PRAGMA journal_mode=wal;') <sqlean.dbapi2.Cursor object at 0x104437c20> `` Weird howisolation_levelof empty string causes the error, but setting that toNone` fixes the error.

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
1773458985  
Powered by Datasette · Queries took 0.867ms · About: github-to-sqlite