From ec0377fee10c4c71fd8557c995e4dabcc85d241c Mon Sep 17 00:00:00 2001 From: Lennart Rudolph Date: Sun, 25 Sep 2016 17:26:23 -0700 Subject: [PATCH 1/2] Added myself to the AUTHORS file --- AUTHORS | 1 + 1 file changed, 1 insertion(+) diff --git a/AUTHORS b/AUTHORS index 3774919d7..37bf11a2b 100644 --- a/AUTHORS +++ b/AUTHORS @@ -31,6 +31,7 @@ Julien Lefevre Julien Schmidt Kamil Dziedzic Kevin Malachowski +Lennart Rudolph Leonardo YongUk Kim Luca Looz Lucas Liu From 65fa40154dee808931d921c5957b7698e996afa5 Mon Sep 17 00:00:00 2001 From: Lennart Rudolph Date: Sun, 25 Sep 2016 18:18:17 -0700 Subject: [PATCH 2/2] Updated README.md: Cloud SQL Server Connection Strings Differ by Generation Google Cloud SQL servers have different connection strings depending on whether they are a First Generation MySQL server or a Second Generation MySQL server. --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c64aae264..388632816 100644 --- a/README.md +++ b/README.md @@ -337,11 +337,16 @@ TCP on a remote host, e.g. Amazon RDS: id:password@tcp(your-amazonaws-uri.com:3306)/dbname ``` -Google Cloud SQL on App Engine: +Google Cloud SQL on App Engine (First Generation MySQL Server): ``` user@cloudsql(project-id:instance-name)/dbname ``` +Google Cloud SQL on App Engine (Second Generation MySQL Server): +``` +user@cloudsql(project-id:regionname:instance-name)/dbname +``` + TCP using default port (3306) on localhost: ``` user:password@tcp/dbname?charset=utf8mb4,utf8&sys_var=esc%40ped