|
|
|
สอบถามเรื่องการตรวจสอบการบันทึกข้อมูลลงในฐานข้อมูลหน่อยครับ C#.NET |
|
|
|
|
|
|
|
Code (C#)
//ลองเอาไปดูนะคับ อาจจะช่วยได้บ้างนะ
private void adddata()
{
try
{
if (textBox1.Text == "")
{
MessageBox.Show("กรุณาป้อนรหัสพนักงาน !!", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
textBox1.Focus();
}
else if (textBox2.Text == "")
{
MessageBox.Show("กรุณาป้อนชื่อพนักงาน !!", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
textBox2.Focus();
}
else
{
// เพิ่มลงตารางที่ 1
con.Open();
SqlCommand com1 = new SqlCommand("insert into personal(id,name)values(@id,@name)", con);
com1.Parameters.AddWithValue("id", textBox1.Text);
com1.Parameters.AddWithValue("name", textBox2.Text);
com1.ExecuteNonQuery();
com1.Parameters.Clear();
con.Close();
MessageBox.Show("เพิ่มข้อมูลสำเร็จ !!", "success", MessageBoxButtons.OK, MessageBoxIcon.Information);
Focus();
}
}
catch (Exception error)
{
MessageBox.Show("รหัสพนักงานซ้ำ !!", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
con.Close();
}
}
|
ประวัติการแก้ไข 2012-07-17 16:36:28
|
|
|
|
Date :
2012-07-17 16:35:51 |
By :
pomcoe |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ยัง งง ๆ อยู่เลยครับ
|
|
|
|
|
Date :
2012-07-17 22:20:11 |
By :
panpoo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้ายังไงงงก็ลองเขียนดูก่อนครับ
|
|
|
|
|
Date :
2012-07-18 05:51:01 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|