我已经开发了C# application
。并使用外部工具制作主题。
在为此应用程序创建设置之前,它可以正常工作。并且数据库连接没有问题。
但是在为此应用程序创建设置并安装后,未创建与数据库的连接。
我已经使用app.config
文件来获取连接字符串。由于外部主题,我在创建设置或问题时遗漏了什么?
我的 app.config 代码
<?xml version="1.0" encoding="utf-8" ?>
<configuration> <connectionStrings>
<add name="connectionStrings" connectionString="Data Source=SUMEET-PC\SQLSERVERNEW; Initial Catalog=ClothShop;User Id=sa;Password=123;" />
</connectionStrings>
</configuration>