From caebc0a59570584d48ecb1c7e72708198c47cf44 Mon Sep 17 00:00:00 2001 From: "Brian J. Cardiff" Date: Sat, 11 Feb 2023 15:23:36 -0300 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 99c9b41..639b842 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ automatically when the connection is created by using the query parameters: ```crystal require "sqlite3" -DB.open "sqlite3://./data.db?_journal_mode=wal&_synchronous=normal" do |db| +DB.open "sqlite3://./data.db?journal_mode=wal&synchronous=normal" do |db| # this database now uses WAL journal and normal synchronous mode # (defaults were `delete` and `full`, respectively) end