假設我已經在Visual Studio的App_Data
文件夾中創建了一個名爲Database1.mdf
的SQL Server數據庫,其表名爲Names
。使用C#連接到本地SQL Server數據庫
我該如何建立連接以使用C#讀取表值?
到目前爲止,我已經試過這樣的事情:
SqlConnection conn = new SqlConnection("Server=localhost;Database=Database1;");
conn.Open();
// create a SqlCommand object for this connection
SqlCommand command = conn.CreateCommand();
command.CommandText = "Select * from Names";
但我得到一個錯誤:
database not found/error connecting to database
你連接數據庫到SQL Server? –