本文介绍了OleDbConnection对象该怎么做才能获得最佳性能的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
什么是最好的:(OleDbConnection)
1)一个Closed Connection对象分配给一个全局变量,并在需要时将其打开
或
2)一个Opened Connection对象分配给一个全局变量,并将其保留在整个应用程序中
或
3)每次创建一个新的本地Connection对象并在使用后将其关闭
或
4)其他建议
主要目标:最佳性能
What performs best: (OleDbConnection)
1) A Closed Connection object assign to a global variable and Open it when need
Or
2) A Opened Connection object assign to a global variable and keep it throughout the application
Or
3) Everytime creates a new local Connection object and close it after use
Or
4) Anything other suggestion(s)
The main objectives: The best ferformance
推荐答案
这篇关于OleDbConnection对象该怎么做才能获得最佳性能的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!