|
|
|
สอบถามผู้รู้ค่ะ เรื่องการเลือกข้อมูลจาก Combobox ใน Datagrid แล้วบันทึกลง Database ค่ะ |
|
|
|
|
|
|
|
ตัวนี้ลองใช้ตัวอย่างจากกระทู้เก่าๆ มาลองดูค่ะแต่บันทึกลงแค่แถวเดียว
Code (C#)
SqlConnection conn = new SqlConnection(strConn);
conn.Open();
string column1 = dataGridView1[0, dataGridView1.CurrentCell.RowIndex].Value.ToString();
string column2 = dataGridView1[1, dataGridView1.CurrentCell.RowIndex].Value.ToString();
string sqlComm = "INSERT INTO Test(Ans_id,PScore) VALUES ('" + column1 + "','" + column2 + "')";
SqlCommand add = new SqlCommand(sqlComm, conn);
int result = add.ExecuteNonQuery();
add.Dispose();
if (result < 1)
{
MessageBox.Show("บันทึกข้อมูลผิดพลาด!!");
}
else
{
MessageBox.Show("บันทึกข้อมูลเรียบร้อยแล้ว");
}
|
|
|
|
|
Date :
2013-02-24 01:02:31 |
By :
fourto |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณค่ะ ได้แล้วค่ะ
ที่ต้องไปลงอีกตารางเพราะข้อมูลในตารางนี้ต้องการจะนำมาแสดงเท่านั้นค่ะ
ผู้ใช้ต้องเลือกเอาข้อมูลในนี้ไปใช้กับอีกตารางที่มีข้อมูล และต้องใช้อีกหลายครั้ง ก็เลยไม่ใช้อัพเดทค่ะ
ขอบคุณอีกครั้งค่ะ
|
|
|
|
|
Date :
2013-02-25 13:57:27 |
By :
fourto |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|