I can't get a Sql Server localdb connection to work on a computer that does not have SqlServer Express installed

前端 未结 5 1842
说谎
说谎 2021-02-03 23:42

I have a C# console application written using Visual Studio 2012. In the application I am using a Sql Server localdb connection to a database to store information. This is wor

5条回答
  •  我在风中等你
    2021-02-04 00:01

    The build having connection string of (LocalDB)\v11.0 will work with the localDB ENU\x64\SqlLocalDB.MSI given on this link Download SqlLocalDB

    I tried this on target system where no Visual Studio is installed. This build will connect with the database with only SqlLocalDB.msi installed. There is no need to install SqlExpress on target system.

提交回复
热议问题