在代码中连接LocalDB出现异常

       在Visual Studio 2012中链接并创建了一个LocalDb的数据库, 然后直接拷贝了其数据Connection String ("Data Source=(LocalDB)\v11.0;Initial Catalog=StatsDatabase;Integrated Security=True;Pooling=False") 到代码中使用,可是每次都抛出下面的异常 :

 

[SqlException (0x80131904): A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)]


应该不是LocalDB的问题,因为在Visual Studio中是可以正常访问的。最终发现是Connection String的问题, 直接拷贝出来的Connection String带有 "\v"需要在代码中转意一下再使用,否则会被当作vertical tab 来理解: 

  错误:"Data Source=(LocalDB)\v11.0;Initial Catalog=StatsDatabase;Integrated Security=True;Pooling=False"

  正确:"Data Source=(LocalDB)\\v11.0;Initial Catalog=StatsDatabase;Integrated Security=True;Pooling=False"

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值