从 SQL Server 数据库到 VB.NET 的全局连接
我想创建一个从Sql服务器数据库到vb.net的全局连接类,以便以后轻松编辑连接。有人可以指导我编写创建和调用个人表单的代码吗?
任何帮助将不胜感激。谢谢
I want to create a global connection class from Sql server database to vb.net to make it easy in later editing the connection. Could anyone guide me the way to code both creating and calling to individual form?
Any help would be appreciated. Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将连接字符串保存在 web.config 文件中。 (这为您提供了一个单点,您可以在其中更改连接字符串,而无需重新编译应用程序,它还允许您将来对其进行加密以保护您的数据库服务器)。
我建议不要使用单个“连接”对象进行重用。打开和关闭每个查询或事务的连接。
请查看存储库模式。 http://msdn.microsoft.com/en-us/library/ff649690.aspx
Keep your connection string in your web.config file. (this gives you a single point where you can change the connection string without needing to recompile your application, it also allows you to encrypt it in the future to protect your DB server).
I'd advise against using a single "connection" object for reuse. Open and close a connection for each query or transaction.
Check out the Repository pattern instead. http://msdn.microsoft.com/en-us/library/ff649690.aspx