From 0109106b8773b3e6bd9902fc52449870c58aa17f Mon Sep 17 00:00:00 2001 From: Kurt Jung Date: Sun, 12 Aug 2018 08:34:51 -0400 Subject: [PATCH] Update README: URL-encode connection options This change could save users from having to dig into source code to see how connection options are parsed. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a764be8..5786f72 100644 --- a/README.md +++ b/README.md @@ -67,6 +67,7 @@ This is also known as a DSN string. (Data Source Name). Options are append after the filename of the SQLite database. The database filename and options are seperated by an `?` (Question Mark). +Options should be URL-encoded (see [url.QueryEscape](https://golang.org/pkg/net/url/#QueryEscape)). This also applies when using an in-memory database instead of a file.