本文介绍了使用并调用表单/ c#中的连接字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

0
下来投票

最爱

我正在使用c#构建桌面应用程序,我把连接字符串放在app.config文件中,就像这样



0down vote
favorite
I''m building desktop application using c# , I put the connection string in the app.config file like this

<connectionStrings>
       <add name="ComputerManagement"
       connectionString="Provider=Microsoft.ACE.OLEDB.12.0; Data Source=...;Initial Catalog=Computersh;Integrated Security=True"/>
     </connectionStrings>





如何在表单中调用连接字符串?或者为连接字符串创建一个类以及如何做到这一点更好?



How I can call the connection string in the forms ? or is it better to make a class for connection string and how I can do that ?

推荐答案



这篇关于使用并调用表单/ c#中的连接字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-19 11:49