|
|
|
สอบถามเรื่้่องการเขียนคำสั่งใน VS2010 หน่อยครับ มีวิธีการแบบไหนบ้างเขียนให้อ่านง่ายๆครับ |
|
|
|
|
|
|
|
ใช้ StringBuilder ต่อ string เอาครับจะได้ดูง่าย
|
|
|
|
|
Date :
2012-08-05 19:20:11 |
By :
hackerboy |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มีตัวอย่างสักหน่อยไหมครับผม
ขอบคุณครับ
|
|
|
|
|
Date :
2012-08-05 19:25:21 |
By :
billkyz5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เนยประมาณนี้ ครับ
Code (C#)
StringBuilder sb;//ประกาศบนสุดก็ได้นะครับ
sb = new StringBuilder();
sb.Remove(0, sb.Length);
sb.Append("update Customers set CustomersID = '"+CustomersIDTextBox.Text+"',");
sb.Append("CustomersName='" + CustomersNameTextBox.Text + "',");
sb.Append("CustomersLname='" + CustomersLnameTextBox.Text + "',");
sb.Append("CustomersAddress='" + CustomersAddressTextBox.Text"',");
sb.Append("CustomersTel='" + CustomersTelTextBox.Text + "',");
sb.Append("CustomerscarDetail='" + CustomerscarDetailTextBox.Text + "',");
sb.Append("CustomersTel='" + CustomersTelTextBox.Text + "'");
sb.Append(" where CustomersID ='" + CustomersIDTextBox.Text + "'");
string sqlselectupdate;
sqlselectupdate = sb.ToString();
|
|
|
|
|
Date :
2012-08-05 19:32:15 |
By :
hackerboy |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เข้าใจและเขียนได้แล้วครับผม
ขอบคุณมากครับ
|
|
|
|
|
Date :
2012-08-05 19:46:45 |
By :
billkyz5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|