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

问题描述

我正在开发一个c#应用程序,我需要从SQL数据库服务器获取数据。在我的应用程序中,我不想制作硬编码连接字符串,因为有时我必须将它连接到不同的数据库,否则我将在不同的位置进行测试。



为此我有一个计划,我使用此表单创建一个xml文件和一个新表单(具有管理员权限)我在xml文件中更新/插入数据库凭据,或者我可以使用microsoft数据链接指向不同的数据库。



你能帮我创建新的xml文件或有任何击球手的想法吗?



我试过的:



我没有尝试任何东西。我什么都不知道......

I am developing an c# application in which I need to fetch data from SQL database server. In my application I do not want to make a hard coded connection string because sometimes i have to connect it with different DB or i will test in different locations.

For this I have a plan that I create an xml file and a new form(with admin rights) using this form I update/insert database credentials in xml file,or i can use microsoft data link to point different DB.

Can you please help me out for creating new xml file or have any batter idea?

What I have tried:

I didnt try anything.I dont have any idea...

推荐答案



<connectionStrings>
    <add name="ConnStringDb1" connectionString="Data Source=localhost;Initial Catalog=YourDataBaseName;Integrated Security=True;" providerName="System.Data.SqlClient" />
  </connectionStrings>


这篇关于C#连接字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-26 05:46