From b3e5f2e959ee8a6d4041bbeb026588d49fcbe74b Mon Sep 17 00:00:00 2001 From: Stephan Tietz <1504437+stietz@users.noreply.github.com> Date: Sun, 17 Nov 2019 13:10:23 +0000 Subject: [PATCH] Updated Using the MySQL Backend (markdown) --- Using-the-MySQL-Backend.md | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/Using-the-MySQL-Backend.md b/Using-the-MySQL-Backend.md index 3a1cef6..7365d47 100644 --- a/Using-the-MySQL-Backend.md +++ b/Using-the-MySQL-Backend.md @@ -8,13 +8,9 @@ DATABASE_URL=mysql://[[user]:[password]@]host[:port][/database] ``` If your password contains special characters, you will need to use percentage encoding. -{| cellpadding="6px" border=1 style="border:1px solid #C0C0C0; border-collapse:collapse; background-color:white;" class="wikitable" -|+Reserved characters after percent-encoding -|- -| [[exclamation mark|!]] || [[number sign|#]] || [[dollar sign|$]] || [[Percent sign|%]] || [[ampersand|&]] || [[apostrophe (mark)|']] || [[parenthesis|(]] || [[parenthesis|)]] || [[asterisk|*]] || [[plus sign|+]] || [[Comma|,]] || [[slash (punctuation)|/]] || [[colon (punctuation)|:]] || [[semicolon|;]] || [[equal sign|=]] || [[question mark|?]] || [[@]] || [[square_bracket|[]] || [[square_bracket|]]] -|- -| %21 || %23 || %24 || %25 || %26 || %27 || %28 || %29 || %2A || %2B || %2C || %2F || %3A || %3B || %3D|| %3F || %40 || %5B || %5D -|} +| ! | # | $ | % | & | ' | ( | ) | * | + | , | / | : | ; | = | ? | @ | [ | ] | +|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---| +| %21 | %23 | %24 | %25 | %26 | %27 | %28 | %29 | %2A | %2B | %2C | %2F | %3A | %3B | %3D | %3F | %40 | %5B | %5D | A complete list of codes can be found on [Wikipedia page for percent encoding](https://en.wikipedia.org/wiki/Percent-encoding#Percent-encoding_reserved_characters)