string strConn = "data source=.;initial catalog=ITE499;Max Pool Size=500;integrated security=SSPI"; SqlConnection Conn = new SqlConnection(strConn); if (Conn.State == ConnectionState.Closed) { Conn.Open(); } SqlCommand Cmd = Conn.CreateCommand(); Cmd.CommandType = CommandType.Text; dataGridView1.Visible = false; textBox1.Visible = true; for ( int allwordid = 1 ; allwordid < 671 ; allwordid++) { MessageBox.Show(Convert.ToString(allwordid)); string strsql = "select stop_word from stopword where stop_id=" + allwordid; Cmd.CommandText = strsql; SqlDataReader r = Cmd.ExecuteReader(); while (r.Read() == true) { string stop = r["stop_word"].ToString(); // MessageBox.Show(stop); int result = 0; string deletestrsql = "DELETE FROM term1 WHERE term_word='" + stop + "'"; Cmd.CommandText = deletestrsql; result = Cmd.ExecuteNonQuery(); if (result != -1) { // MessageBox.Show("Complete"); } Conn.Close(); } } // MessageBox.Show(strsql); if (allwordid == 670) { MessageBox.Show("ลบแล้ว"); } }
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง