zoukankan      html  css  js  c++  java
  • 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;
            }

  • 相关阅读:
    javascript实战演练,制作新按钮,‘新窗口打开网站’,点击打开新窗
    P1332 血色先锋队
    P4643 [国家集训队]阿狸和桃子的游戏
    T149876 公约数
    P1462 通往奥格瑞玛的道路
    P1083 借教室
    Tribles UVA
    Fence Repair POJ
    Crossing Rivers
    关于一轮
  • 原文地址:https://www.cnblogs.com/lmcblog/p/2664997.html
Copyright © 2011-2022 走看看