我是一個簡單的數據庫項目的工作在C尖銳和MS SQL服務器2008年,但在編譯程序有錯誤IM的SQL Server的坡平了此消息:異常連接到從C#
的類型初始值對於 'StudentsInformationSystem.DB_conection' 拋出一個異常
我的代碼:拋開
namespace StudentsInformationSystem
{
class DB_Access
{
private SqlConnection conn;
public DB_Access()
{
conn = DB_conection.GetConnection(); //this is where i am getting the error on this line of code
}
public void add_student(string regNo,string fname, string lname, string phoneNo)
{
if (conn.State.ToString() == "closed")
{
conn.Open();
}
SqlCommand newCmd = conn.CreateCommand();
newCmd.Connection = conn;
newCmd.CommandType = CommandType.Text;
newCmd.CommandText = "insert into student values('" + regNo + "','" + fname + "','" + lname + "','" + phoneNo + "')";
newCmd.ExecuteNonQuery();
}
}
}
這不是一個編譯器錯誤。閱讀InnerException。 – SLaks
即時新手介意向我解釋你的意思嗎?就像InnerException一樣。 –
你會得到什麼錯誤?請告訴錯誤句子。很可能它會像「連接不開放」這樣嗎? – Sami