|
|
|
สอบถามเรื่่อง Code การเพิ่มและแก้ไขข้อมูล โดยมีตรวจสอบ Username ด้วย |
|
|
|
|
|
|
|
Code ของปุ่มบันทึก จะไปตั้งสถานะ ในปุ่มเพิ่ม status= add และในปุ่มแก้ไข status =edit
Code (VB.NET)
if status = add then
// Code Sql insert
else
// Code Sql Update
enf if
|
|
|
|
|
Date :
2013-02-28 21:16:26 |
By :
epukpui |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
น่าจะพอเป็นแนวทางได้
Code (VB.NET)
Dim intNumRows As Integer
strSQL = "SELECT COUNT(*) FROM customer WHERE CustomerID = '"& Me.txtCustomerID.Text &"' "
objCmd = New SqlCommand(strSQL, objConn)
intNumRows = objCmd.ExecuteScalar()
IF intNumRows > 0 Then
Me.lblStatus.Text = "CustomerID already exist."
Else
strSQL = "INSERT INTO customer (CustomerID,Name,Email,CountryCode,Budget,Used) " & _
" VALUES " & _
" ('" & Me.txtCustomerID.Text & "','" & Me.txtName.Text & "','" & Me.txtEmail.Text & "', " & _
" '" & Me.txtCountryCode.Text & "','" & Me.txtBudget.Text & "','" & Me.txtUsed.Text & "')"
objCmd = New SqlCommand
With objCmd
.Connection = objConn
.CommandText = strSQL
.CommandType = CommandType.Text
End With
objCmd.ExecuteNonQuery()
End IF
|
|
|
|
|
Date :
2013-03-01 06:04:24 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณค่ะ ^^
|
|
|
|
|
Date :
2013-03-04 19:30:47 |
By :
epukpui |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|