在解決方案中增加一窗口選擇xml文件,並將名稱改為app.config.其內容設置如下:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<add key="source" value="Server=localhost;uid=sa;pwd='fang';database=khgx;" />
</appSettings>
</configuration>
請在引用中添加-System.configuration不然程序會提示錯誤。在程序中就可以這樣調用:
private string source = System.Configuration.ConfigurationManager.AppSettings["source"];
打包安裝後,可以直在安裝的機器上面接修改配置文件,進行數據庫連接。
conn = new SqlConnection(source);