|
|
|
C# ขอสอบถามการ Insert ข้อมูลลง DataBass ต้อนโชร์ในหน้าจอ ข้อมูล เป็น ตัวอักษร แต่ เวลา บันทึก ให้บันทึก เป็น ID แทนได้ไหมคร๊บ |
|
|
|
|
|
|
|
ขอสอบถามการ Insert ข้อมูลลง DataBass ต้อนโชร์ในหน้าจอ ข้อมูล เป็น ตัวอักษร แต่ เวลา บันทึก ให้บันทึก เป็น ID แทนได้ไหมคร๊ เพราะ หนู ไปดึกข้อมูลอีกตารางเพื่อที่จะมาโชร์ใน ComboBox อ่ะคร๊ จะ พอทำได้ไหมคร๊ช่วยแนะนำหน่อยคร๊
Code (C#)
string sql = "Insert into Employees ( OID,FullName,antecedent,Position,Sex,Address,Phone,Username, Password,Birthdate,Salary,WorkStart,Picture,Status) Values (@OID,@FullName,@antecedent,@Position,@Sex,@Address, @Phone,@Username,@Password,@Birthdate,@Salary,@WorkStart, @Picture,@Status ) ";
comm = new SqlCommand(sql, conn);
comm.Parameters.Clear();
comm.Parameters.Add("@OID", SqlDbType.VarChar).Value = cmbCustomer.Text.Trim();
comm.Parameters.Add("@FullName", SqlDbType.VarChar).Value = txtName.Text.Trim();
comm.Parameters.Add("@antecedent", SqlDbType.VarChar).Value = cmbAntecedent.Text.Trim();
comm.Parameters.Add("@Position", SqlDbType.VarChar).Value = txtPosition.Text.Trim();
comm.Parameters.Add("@Sex", SqlDbType.VarChar).Value = cmbSex.Text.Trim();
comm.Parameters.Add("@Address", SqlDbType.VarChar).Value = txtAddress.Text.Trim();
comm.Parameters.Add("@Birthdate", SqlDbType.SmallDateTime).Value = dtpBirthday.Value;
comm.Parameters.Add("@WorkStart", SqlDbType.SmallDateTime).Value = dtpStartingDate.Value;
comm.Parameters.Add("@Phone", SqlDbType.VarChar).Value = mtbPhone.Text.Trim();//cmbStatus
comm.Parameters.Add("@Salary", SqlDbType.VarChar).Value = txtSalary.Text.Trim();
comm.Parameters.Add("@Username", SqlDbType.VarChar).Value = txtUser.Text.Trim();
comm.Parameters.Add("@Password", SqlDbType.VarChar).Value = txtPassWord.Text.Trim();
comm.Parameters.Add("@Status", SqlDbType.VarChar).Value = cmbStatus.Text.Trim();
FileStream fiStream = new FileStream(tbxFileName.Text, FileMode.Open, FileAccess.Read);
BinaryReader binReader = new BinaryReader(fiStream);
int filLen = (int)fiStream.Length;
byte[] pic = binReader.ReadBytes(filLen);
comm.Parameters.AddWithValue("@Picture", pic);
int check = comm.ExecuteNonQuery();
if (check > 0)
{
MessageBox.Show("เพิ่มข้อมูลเรียนร้อยแล้ว");
}
Tag : C#
|
|
|
|
|
|
Date :
2013-06-11 23:45:23 |
By :
onanong_07 |
View :
977 |
Reply :
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถูกแล้วครับ ตอนที่แสดงผลก็ใชดูพวกคำสั่ง JOIN ครับ
|
|
|
|
|
Date :
2013-06-12 06:12:58 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใน ComboBox เป็นตัวอักษร แต่เวลาจะบันทึก ให้บันทึกเป็น ID ได้ไหม ค่ะ
เหมือนใน รูปด้านบน ค่ะ
|
|
|
|
|
Date :
2013-06-12 15:38:41 |
By :
onanong_07 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SelectedValue
|
|
|
|
|
Date :
2013-06-12 20:37:58 |
By :
watcharop |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ช่วยเพิ่ม อีกสักหน่อยจะได้ไหม ค่ะ ยังไม่เข้าใจอ่ะค่ะ
|
|
|
|
|
Date :
2013-06-12 22:15:34 |
By :
onanong_07 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองใช้ if มั้ยครับตอน Insert
เช่น
if cboSex.text = " ชาย " then
cboSex.text = " M "
ELSE
cboSex.text = " F "
end if
ลองดูนะครับน่าจะได้ ^^
|
|
|
|
|
Date :
2013-06-17 16:19:33 |
By :
Tea |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|