我是新來的Visual Studio和SQL Server Express,所以我很抱歉我缺乏知識。使用Visual Studio無法連接到Microsoft SQL Server 2012 Express
我試圖用兩種方式進行連接,但它們都不起作用。我首先在web.config
文件中寫了<connectionStrings>
元素。
<connectionStrings>
<add name="testDB"
connectionString=" Data Source=(my computer name)\SQLEXPRESS;Initial Catalog=Factory;Integrated Security=True"
providerName="System.Data.SqlClient" />
</connectionStrings>
然後我想在SqlDataSource
中使用,並設置數據連接。
但我得到這個消息:
數據庫模式無法爲這個連接進行檢索。請 確保連接設置正確,並且數據庫在線爲 。
無法加載文件或程序集 ' Microsoft.SqlServer.Management.Sdk.Sfc,版本= 12.0.0.0, 文化=中性公鑰= 89845dcd8080cc91' 或沒有其 依賴。
即使我嘗試通過服務器資源管理器連接(添加連接,然後(my computer name)\EXPRESS
)我收到相同的消息。但我確實找到了所有的標籤,並且連接測試正常工作。
我重新安裝了SQL Server 2012 Express和SQL Server 2012 Express Management Studio兩次。
試試這個字符串模式:Server = myServerName \ myInstanceName; Database = myDataBase; User Id = myUsername; Password = myPassword; – Ionic
沒有VS 2014 - 我們有VS 2010,VS 2013和VS 2015 - 但沒有2014版本(但是有一個** SQL Server ** 2014版本) –