 |
|
VB.NET - Error myCommand.ExecuteNonQuery() แก้ยังไงคับ ช่วยเหลือที |
|
 |
|
|
 |
 |
|
Code (VB.NET)
string strSQL = "INSERT INTO ITDatabase (Dep_Id, Dep_Code) VALUES " & _
" ('" & Me.txt_depid.Text & "','" & Me.txt_depcode.Text & "' ) "
Dim cmdSQL as SqlCeCommand(strSQL,myConnection )
cmdSQL.ExecuteNonQuery()
ลองแบบนี้ดูครับ
|
 |
 |
 |
 |
Date :
2010-10-27 11:15:28 |
By :
kanchen |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
มือใหม่คับ ไม่ทราบว่าจะใส่ไว้ตรงส่วนไหนดี
|
 |
 |
 |
 |
Date :
2010-10-27 11:30:22 |
By :
kobmemo |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ลองใช้ Try Catch ครอบแล้วทำการ Debug ดู Error Message ครับ
Go to : ASP.NET Try Catch Exception
|
 |
 |
 |
 |
Date :
2010-10-27 11:33:16 |
By :
webmaster |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
comment ตรงนี้ออกดูครับ
Dim myCommand As SqlCeCommand = myConnection.CreateCommand()
myCommand.CommandText = "INSERT INTO ITDatabase (Dep_Id, Dep_Code) VALUES " & _
" ('" & Me.txt_depid.Text & "','" & Me.txt_depcode.Text & "' ) "
myCommand.CommandType = CommandType.Text
myCommand.ExecuteNonQuery() **ตรงนี้เลยคับ
แล้วก็เอาส่วนที่ผมเขียนไปใส่ดูครับว่าได้หรือป่าว
|
 |
 |
 |
 |
Date :
2010-10-27 11:42:56 |
By :
kanchen |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ว่าแต่รันผ่าน emu หรือ deploy เข้าเครื่องครับ
|
 |
 |
 |
 |
Date :
2010-10-27 11:44:12 |
By :
kanchen |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
string strSQL = "INSERT INTO ITDatabase (Dep_Id, Dep_Code) VALUES " & _
" ('" & Me.txt_depid.Text & "','" & Me.txt_depcode.Text & "' ) "
Dim cmdSQL as SqlCeCommand(strSQL,myConnection )
cmdSQL.ExecuteNonQuery()
มัน Error คับ ตรงที่ขีดเส้นใต้คับ
|
 |
 |
 |
 |
Date :
2010-10-27 11:46:55 |
By :
kobmemo |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ลองแก้ตรง
Code (VB.NET)
Dim myCommand As SqlCeCommand = myConnection.CreateCommand()
myCommand.CommandText = "INSERT INTO ITDatabase (Dep_Id, Dep_Code) VALUES " & _
" ('" & Me.txt_depid.Text & "','" & Me.txt_depcode.Text & "' ) "
myCommand.CommandType = CommandType.Text
myCommand.ExecuteNonQuery() **ตรงนี้เลยคับ
myConnection.Close()
เป็น
Code (VB.NET)
Dim myCommand As SqlCeCommand
myCommand = New SqlCeCommand("INSERT INTO ITDatabase (Dep_Id, Dep_Code) VALUES " & _
" ('" & Me.txt_depid.Text & "','" & Me.txt_depcode.Text & "' ) ", myConnection)
myCommand.ExecuteNonQuery()
myConnection.Close()
|
 |
 |
 |
 |
Date :
2010-10-27 11:57:44 |
By :
noptalent |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ขึ้น error ตรงนี่ myCommand.ExecuteNonQuery() มันขึ้นว่าอะไรครับ
|
 |
 |
 |
 |
Date :
2010-10-27 12:39:14 |
By :
kanchen |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
มันฟ้องงี้คับ
SqlCeException was unhandled
The specified table does not exist. [ITDatabase]
|
 |
 |
 |
 |
Date :
2010-10-27 12:56:32 |
By :
kobmemo |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
table ไม่มีครับ 
|
 |
 |
 |
 |
Date :
2010-10-27 12:59:37 |
By :
webmaster |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
นั้นไงจบข่าวครับ 
|
 |
 |
 |
 |
Date :
2010-10-27 13:01:36 |
By :
kanchen |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ไอ้ string strSQL = "INSERT INTO ....." เนี้ย คือการประกาศตัวแปร VB เหรอครับคุณ
|
 |
 |
 |
 |
Date :
2010-10-27 13:23:48 |
By :
3rds |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
อ่อ ได้แล้วคับ ใส่ชื่อตารางผิดนี่เอง ขอบคุณทุกๆท่านมากๆคับ บอร์ดนี้มีประโยชน์มากๆเลยคับ 
|
 |
 |
 |
 |
Date :
2010-10-27 13:40:37 |
By :
kobmemo |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|

[size=10pt][size=10pt][size=10pt]ช่วยทีค่ะจะเพิ่มข้อมูล แต่เพิ่มไม่ได้สักทีติดตรงนั้นเหมือนกานค่ะ][/size][/size][/size]
|
ประวัติการแก้ไข 2013-02-06 21:35:54
 |
 |
 |
 |
Date :
2013-02-06 21:34:35 |
By :
Andromeda |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|

รบกวนช่วยบอกหน่อยค่ะ ว่าจะแก้ยังไง ขอบคุณค่ะ
ร้องไห้แป๊ป T^T
|
 |
 |
 |
 |
Date :
2014-05-13 22:35:33 |
By :
Project |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|