数据库连接字符串有好几种
Data Server=.\SQLEXPRESS;Initial Catalog=Northwind;User ID=sa;Password=i05630229
Data Server=服务器名\SQLEXPRESS;Initial Catalog=Northwind;User ID=sa;Password=i05630229
Data Server=localhost\SQLEXPRESS;Initial Catalog=Northwind;User ID=sa;Password=i05630229
Data Server=.;Initial Catalog=Northwind;User ID=sa;Password=i05630229
Data Server=服务器名;Initial Catalog=Northwind;User ID=sa;Password=i05630229
跟数据库版本有关系,如果是Sql Server 2005 Express版本,则必须要有“\SQLEXPRESS”。
这个字符串是定义为一个变量的时候,“\”的下面红色的波浪线会提示你“\S是无法识别的转义序列”,
因此如果字符串是定义为一个变量的时候应该写成Server=.\\SQLEXPRESS