我正在製作一個簡單的新聞系統,用戶可以在其中寫新聞故事,並添加一張照片。我如何從一張桌子上取得身份證件並放置在另一張桌子上?
我所知道的「邏輯」的背後是什麼,我需要做的:
保存在數據庫中的圖像細節,並得到,當它被插入
保存的消息稱,被使用的ID故事與圖片ID一起我剛剛得到上述
我怎麼能填充newsPicID
場tblNews與當PIC被插入到被使用的ID picID
字段在tblPic?
我的INNER JOIN會看起來像這樣嗎?
SELECT * FROM tblNews INNER JOIN picTable ON picTable.picID = newsTable.newsPicID
對於任何引用,這裏是我當前的代碼:
if (FileUpload1.PostedFile != null)
{
string FileName = Path.GetFileName(FileUpload1.PostedFile.FileName);
// Save files to disk
FileUpload1.SaveAs(Server.MapPath("/images/admin/news/" + FileName));
// Add Entry to DataBase
String strConnString = System.Configuration.ConfigurationManager.ConnectionStrings["conString"].ConnectionString;
SqlConnection con = new SqlConnection(strConnString);
string strQuery = "insert into tblFiles (FileName, FilePath) values(@FileName, @FilePath); insert into tblNews (newsTitle, newsDate, newsSummmary, newsContent) values(@newsTitle, @newsDate, @newsSummmary, @newsContent)";
SqlCommand cmd = new SqlCommand(strQuery);
cmd.Parameters.AddWithValue("@FileName", FileName);
cmd.Parameters.AddWithValue("@FilePath", "/images/admin/news/" + FileName);
cmd.Parameters.AddWithValue("@newsTitle", txtnewstitle.Text);
cmd.Parameters.AddWithValue("@newsDate", txtnewsdate.Text);
cmd.Parameters.AddWithValue("@newsSummary", txtnewssummary.Text);
cmd.Parameters.AddWithValue("@newsContent", txtnewsmaincontent.Text);
cmd.CommandType = CommandType.Text;
cmd.Connection = con;
try {
con.Open();
cmd.ExecuteNonQuery();
}
finally {
con.Close();
con.Dispose();
}
}
是picID標識字段? –
@Vicky_Thinking是的。 tblFiles中的picID和tblNews中的newsID是主要和標識 – cmp