Winform读取app.config文件


  今天在做关于winfrom连接数据库的时候,遇到一个问题:在这里没有像.net bs模式中那样直接在配置文件中填写连接数据库语句,那么,如果有没有一种比较好的方式,实现向bs模式中的那样,可以很方便容易的改变连接数据库语句。答案就在app.config文件中。

        首先新建一个xml文件,取名为app.config,在里面填写连接数据库语句:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<connectionStrings/>
<appSettings>
    <add key="Conn" value="server=.;uid=sa;pwd=123;database=PM_Information"/>
</appSettings>
</configuration>

        然后再需要连接数据库的文件中读取配置文件中的信息。

using System.Xml;

public static string ReadXml()
        {
            XmlDocument doc = new XmlDocument();

            string strFileName = AppDomain.CurrentDomain.SetupInformation.ConfigurationFile;

            doc.Load(strFileName);

            XmlNode node = doc.SelectSingleNode("configuration/appSettings/add");

            return node.Attributes[1].Value;
        }


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM