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;
            }

  • 相关阅读:
    AtCoder Grand Contest 001F Wide Swap
    生成函数/母函数入门学习
    树的点分治入门小结
    树链剖分入门小结
    有重复元素的全排列
    二项式界
    二项系数
    排列问题、组合问题
    容斥原理
    P3372 【模板】线段树 1
  • 原文地址:https://www.cnblogs.com/lmcblog/p/2664997.html
Copyright © 2011-2022 走看看