是否可以從單個文本框添加到數據庫中的不同表中。將Asp.net添加到數據庫
我有一個addclub網絡表格,我想將clubname添加到許多不同的表格。
以下是我目前的代碼。
cmd = new SqlCommand("insert into youthclublist(youthclubname, description, address1, address2, county, postcode, email, phone) values ('" + youthclubname.Text + "', '" + description.Text + "','" + address1.Text + "','" + address2.Text + "', '" + county.Text + "', '" + postcode.Text + "', '" + email.Text + "', '" + phone.Text + "')", connection);
你有什麼問題?! – 2012-01-10 09:53:22
我假設你的問題是多重插入。是的,你可以插入你的數據從文本框單擊插入多個表,解釋你的問題更清楚.. – Murtaza 2012-01-10 09:53:33
問題是,目前的代碼只是添加到一個表我想知道我將如何改變它,所以它增加到多個表格 – Inkey 2012-01-10 09:57:33