企业应用程序的单个持久连接或多个一次性 SQL 连接
相关:单个连接上的多个查询
在企业应用程序中,有一个针对不同输入执行连接比每次执行后处理连接更好?顺便说一句,我正在谈论的是 .net 2.0 和 Sql 2005,但问题适用于所有数据库系统。
related:Multiple Queries on single connection
In a Enterprise application, Is having a single connection execute for different inputs is better than disposing connections after their every execution? btw this is .net 2.0 and Sql 2005 i am talking about but the question applies to all database systems.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常,最好在需要时打开并释放连接。让连接池发挥其作用。
It is generally better to just open and dispose connections when you need them. Let connection pooling do its job.