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

  • 相关阅读:
    JAVA中循环删除list中元素的方法总结
    弹力设计总结
    CPU飚高问题排查基本步骤
    缓存数据库更新策略
    .Module高内聚低耦合的思考
    javascript回调函数及推论
    Laravel Autoloader模块分析
    Laravel Event模块分析
    数据操作分层设计
    Discuzx2开发标准流程
  • 原文地址:https://www.cnblogs.com/lmcblog/p/2664997.html
Copyright © 2011-2022 走看看