今天在做关于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;
}