-3
我想要示例編碼插入數據到SQL SErver 2005使用ASP.NET插入數據的ASP.NET編碼
我想要示例編碼插入數據到SQL SErver 2005使用ASP.NET插入數據的ASP.NET編碼
轉到http:/www.asp.net/並閱讀教程以及掛起圍繞初學者論壇。這裏給你的不僅僅是一些代碼片段。
最基本的使用存儲過程,但同意@TomTom你可能需要首先獲得有關該主題的一些信息。
SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["SQLConnection"].ConnectionString);
SqlCommand cmd = new SqlCommand("Create", con);
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.Add("@Column", SqlDbType.NVarChar).Value = "foo"
con.Open();
cmd.ExecuteNonQuery();
con.Close();