Using raw db connection for creating object #721
Description
Hi Xorm team,
Firstly thanks for writing this awesome ORM tool! Golang is still in its initial stages so its good to see some mature code out there!
I am using Google's Cloud offering and they have a CloudSql proxy (which talks mysql internally). Although since your constructor does not take an actual db object (and say that it's SQL) I cannot use xorm unless I deconstruct either yours or cloudsql proxy code.
This is how I currently instantiate an object in my code:
config.Addr = instanceName config.User = dbUser config.Passwd = dbPass config.DBName = dbName db, err = cloudsqldialer.DialCfg(&config)
The code for cloudsql is here: github.com/GoogleCloudPlatform/cloudsql-proxy
Any help appreciated