sql数据库连接字符串在APP.config配置文件内的两种写法
Posted 蜀云泉
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql数据库连接字符串在APP.config配置文件内的两种写法相关的知识,希望对你有一定的参考价值。
第一种方法
写法:
<configuration> <appSettings> <add key="connectionstring" value="server=127.0.0.1;uid=sa;pwd=123456;database=Power"/> </appSettings> </configuration>
调用:
string rode= System.Configuration.ConfigurationSettings.AppSettings["connectionstring"];
第二种方法
写法:
<connectionStrings> <add name="CONNECTIONS" connectionString="Server=10.10.10.1;Database=MyDBTest;Uid=sa;Pwd=sa" /> </connectionStrings>
调用:
string connectionstr = System.Configuration.ConfigurationSettings.AppSettings["CONNECTIONS"];
以上是关于sql数据库连接字符串在APP.config配置文件内的两种写法的主要内容,如果未能解决你的问题,请参考以下文章
app.config 文件中的多个 SQL Server 连接字符串
为 WinForms 应用程序加密 app.config 中的连接字符串
为啥我需要在 Azure 管理门户中而不是在我的 WebJob 的 App.config 中为 WebJobs 配置连接字符串?