SqlCeConnection myConnection2 = default(SqlCeConnection); myConnection2 = new SqlCeConnection("Data Source =" + (System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase) + "\\AppDatabase1.sdf;")); SqlCeCommand myCommand = myConnection2.CreateCommand(); myConnection2.Open(); myCommand.CommandText = "insert into Vocabulary (Word_Th, Word_Eng, Pic_jpg) values ('" + this.textBox1.Text + "','" + this.textBox2.Text + "', @image)"; SqlCeParameter para = new SqlCeParameter(); para.ParameterName = "@image"; para.SqlDbType = SqlDbType.Image; para.Value = image_byte; myCommand.Parameters.Add(para); myCommand.CommandType = CommandType.Text; myCommand.ExecuteNonQuery(); image_byte = null; myConnection2.Close(); //MessageBox.Show(myCommand.CommandText); MessageBox.Show("บันทึกข้อมูลเรียบร้อย");
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง