I'm writing a SQL CLR assembly that will be deployed to a third-party database server, but which needs to execute stored procedures residing in my database server. All the pieces are in place, but I don't know how to make the connection string configurable. Articles such as this: http://msdn.microsoft.com/en-us/library/ms345135%28SQL.90%29.aspx repeatedly assert that connection strings should not be hardcoded in production (obviously), but give no suggestions for how to make the connection string configurable.
Is there any way to deploy a settings file or otherwise provide configuration settings to a SQL CLR 2005 assembly?