它可以將數據同時插入兩個表中嗎?在我目前的頁面中,只有一條命令只在一張表CarTab中插入數據。將數據插入到SQL中的兩個表中
SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["Connection"].ConnectionString);
SqlCommand cmd = new SqlCommand("Insert into CarTab(Manufacture,Model,Plate,Color,Year,Service,Roadtax) Values (@manufactures,@models,@plates,@colors,@years,@services,@roadtaxs)", conn);
cmd.CommandType = CommandType.Text;
cmd.Parameters.AddWithValue("@manufactures", Label1.Text);
cmd.Parameters.AddWithValue("@models", Label2.Text);
cmd.Parameters.AddWithValue("@plates", Label3.Text);
cmd.Parameters.AddWithValue("@colors", Label4.Text);
cmd.Parameters.AddWithValue("@years", Label5.Text);
cmd.Parameters.AddWithValue("@services", Label6.Text);
cmd.Parameters.AddWithValue("@roadtaxs", Label7.Text);
conn.Open();
cmd.ExecuteNonQuery();
如果我想把另一張表,TempTab是什麼命令?謝謝。
吳宇森,Thnks .. u能請看到我的問題在這裏,我需要幫助。也許你可以給我一些想法。謝謝.http://stackoverflow.com/questions/12362882/value-in-dropdown-menu-removed –
你不conn.Close()與使用(){} – Sasha