I'm writing a golang application and using the golang postgres driver - https://github.com/lib/pq/
I use a connection string like this
'name:pass@host:port/dbname'
I try to add aplication_name param in conn string, but this doesn't work
'name:pass@host:port/dbname?application_name=myapp'
Is it possible to set the application name from golang? (standard way)