|
|
|
ช่วยเช๊คให้ทีครับผม มันติด ExecuteNonQuery อ่ะครับ ไม่ทราบว่ามัน bug หรือเปล่าแต่ผมเขียน ตรงกับ ใน ดาต้าเบส แล้วนะครับ |
|
|
|
|
|
|
|
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
cmdInsert = New OleDbCommand("Insert Into Customer (Cusid,Username,Password,Firstname,Lastname,Address,Zipcode,Telephone,E_mail) Values (lbl1.text,textbox1.text,textbox2.text,textbox3.text,textbox4.text,textbox5.text,textbox6.text,textbox7.text,textbox8.text)", custdb)
cmdInsert.Parameters.AddWithValue("@Cusid", lbl1.Text)
cmdInsert.Parameters.AddWithValue("@Username", textbox1.Text)
cmdInsert.Parameters.AddWithValue("@Password", textbox2.Text)
cmdInsert.Parameters.AddWithValue("@Firstname", textbox3.Text)
cmdInsert.Parameters.AddWithValue("@Lastname", textbox4.Text)
cmdInsert.Parameters.AddWithValue("@Address", textbox5.Text)
cmdInsert.Parameters.AddWithValue("@Zipcode", textbox6.Text)
cmdInsert.Parameters.AddWithValue("@Telephone", textbox7.Text)
cmdInsert.Parameters.AddWithValue("@E_mail", textbox8.Text)
custdb.Open()
cmdInsert.ExecuteNonQuery()
custdb.Close()
End Sub
มันติด ExecuteNonQuery อ่ะครับ ไม่ทราบว่ามัน bug หรือเปล่าแต่ผมเขียน ตรงกับ ใน ดาต้าเบส แล้วนะครับ
Tag : - - - -
|
|
|
|
|
|
Date :
2010-02-06 15:15:48 |
By :
booninter |
View :
1151 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เอา error message มาให้ดูด้วยจิ หรือแปะรูปตอน error มาเลยก็ได้
|
|
|
|
|
Date :
2010-02-06 15:56:16 |
By :
salapao_codeman |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
นี่ครับภาพ ยังไงก็ช่วยทีครับ สมัครสมาชิกธรรมดาๆ
|
|
|
|
|
Date :
2010-02-06 16:40:43 |
By :
booninter |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SQL Command INSERT คุณผิด
คุณลองขยาย View Detail ออกมาคุณก็จะรู้ว่าจุดผิดมันตรงไหน
|
|
|
|
|
Date :
2010-02-08 15:52:36 |
By :
numenoy |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
"Insert Into Customer (Cusid,Username,Password,Firstname,Lastname,Address,Zipcode,Telephone,E_mail) Values (lbl1.text,textbox1.text,textbox2.text,textbox3.text,textbox4.text,textbox5.text,textbox6.text,textbox7.text,textbox8.text)"
ไม่มี parameter 555+
|
|
|
|
|
Date :
2010-02-09 08:53:53 |
By :
numenoy |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|