我使用SQL Server数据库在C#Winforms中开发了一个小应用程序。
现在我想将它部署在客户端使用安装了SQL Server的服务器的地方,并且他想在另一台机器上使用.exe
文件。
我需要建立连接,所以我在SQL Server中添加了数据库文件,并将连接字符串更改为:
public class DatabaseConnection
{
private static string constring = @"Data Source=192.xxx.x.xxx\MYSRV;Initial Catalog=dbEmployee;User ID=sa;Password=sa$123";
public static SqlConnection cn = new SqlConnection(constring);
}
但我仍然无法运行我的应用程序 - 我一直这样做: