Update README.md

This commit is contained in:
Brian J. Cardiff 2023-02-11 15:23:36 -03:00 committed by GitHub
parent 6a73d4f64d
commit caebc0a595
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -57,7 +57,7 @@ automatically when the connection is created by using the query parameters:
```crystal ```crystal
require "sqlite3" 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 # this database now uses WAL journal and normal synchronous mode
# (defaults were `delete` and `full`, respectively) # (defaults were `delete` and `full`, respectively)
end end