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
Recently API 30 has introduced a new API called execPerConnectionSQL, it allows clients to execute PRAGMA statements per connection.
It would be nice if Requery could introduce this API that can work on Pre API 30 devices.
My usecase is that I'd like to stop auto-checkpointing on the DB by performing PRAGMA wal_autocheckpoint=0, however as far as I learned, this needs to be executed per connection, rather than at the start of opening of the DB.
The text was updated successfully, but these errors were encountered:
Recently API 30 has introduced a new API called execPerConnectionSQL, it allows clients to execute
PRAGMA
statements per connection.It would be nice if Requery could introduce this API that can work on Pre API 30 devices.
My usecase is that I'd like to stop auto-checkpointing on the DB by performing
PRAGMA wal_autocheckpoint=0
, however as far as I learned, this needs to be executed per connection, rather than at the start of opening of the DB.The text was updated successfully, but these errors were encountered: