Skip to content

Instantly share code, notes, and snippets.

@Oisann
Created May 29, 2024 22:24
Show Gist options
  • Save Oisann/9616dd8c79ec2c189b6c8a978cd481dc to your computer and use it in GitHub Desktop.
Save Oisann/9616dd8c79ec2c189b6c8a978cd481dc to your computer and use it in GitHub Desktop.
-- strict tables
CREATE TABLE foo (name TEXT, age INT) STRICT;
-- Enable Write ahead log (just run this on the db file once and it is enabled)
PRAGMA journal_mode=WAL;
-- Lower synchronous level (with WAL, you should set it to 1. Default is 2)
PRAGMA synchronous=1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment