diff options
author | Kurt Jung <kurt.w.jung@gmail.com> | 2018-08-12 08:34:51 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-12 08:34:51 -0400 |
commit | 0109106b8773b3e6bd9902fc52449870c58aa17f (patch) | |
tree | 0c580ea1620e864ef3db4a2039c2e1a64325553c /README.md | |
parent | Ensure that SqliteStmt.closed property is guarded. (diff) | |
download | golite-0109106b8773b3e6bd9902fc52449870c58aa17f.tar.gz golite-0109106b8773b3e6bd9902fc52449870c58aa17f.tar.xz |
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.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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. |