在iis 7中定义连接池大小(不是通过连接字符串)
因此,我们的连接字符串是根据应用程序设置构建的,而不是存储为实际的连接字符串。我知道这很愚蠢,在我来这里之前几年就已经完成了。
问题是,我可以在 web.config 或 IIS 本身中做一些事情来从配置的角度定义进程默认连接池,这样我就不必更改创建连接字符串的代码并部署新版本的 dal增加连接池。
有想法吗?
So our connection string is constructed from app settings rather than stored as an actual connection string. Stupid I know, was done years before I was here.
Question is, can I do something in the web.config or in IIS itself to define the processes default connection pool from a configuration standpoint so I don't have to change the code that creates the connection string and deploy a new version of the dal to increase the connection pool.
Ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是不可能的。连接池大小只能通过连接字符串来定义。
This cannot be done. Connection pool size can be defined only by connection string.