Currently I'm using following commands at the beginning of each function that accesses the database.
o := orm.NewOrm()
o.Using("default") // Using default, you can use other database
It feels like I should do that only once at router initialization. Can that be a security issue?