0

我正在使用 SQL Express 来管理用 C# 编写的 Windows 应用程序中的数据库。我正在使用连接字符串Data Source=.\\SQLEXPRESS;Initial Catalog=caf;Integrated Security=True,但它在另一台机器上不起作用。我该怎么做才能让它发挥作用?

4

1 回答 1

6

You are missing the: Server=myServerAddress;

Connection Strings

"Server=myServerAddress;Database=myDataBase;User Id=myUsername; Password=myPassword;"

于 2013-08-01T18:06:44.610 回答