I'm glad you were able to figure it out, thanks for coming back to post your findings!
On Wednesday, June 7, 2017 at 10:26:06 AM UTC-4, SPED MAKER wrote: > > I solved this problem. > > to connect with a mysql_connection is necessary a little change. > > the example says to use: > MYSQL_DSN: > mysql:unix_socket=/cloudsql/INSTANCE_CONNECTION_NAME;dbname=DATABASE; > > to make a connection with PDO. > > in mysql_connect use this:: > > $server = ":/cloudsql/INSTANCE_CONNECTION_NAME"; > $user = 'root' > $pass = "pass"; > > mysql_connect ($server,$user,$pass); > > > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/9a752483-0dd9-4ecc-b86b-8c4f8d563ea6%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
