 |
|
ลบกวนช่วยดู insert [vb] หลังจากที่ไปแก้แล้วแต่ไม่สำเร็จข้อความที่เกิดขึ้น Must declare the scalar variable "@id". |
|
 |
|
|
 |
 |
|
Code (VB.NET)
Dim constr As String = "provider=sqloledb;"
constr &= "data source=ART-PC;"
constr &= "initial catalog=book;"
constr &= "integrated security=sspi"
Dim conn As New OleDbConnection(constr)
conn.Open()
Dim ra As String
Dim sql As String
sql = "insert into book_properties(book_id,book_name)values(@id,@name)"
Dim cmd As New OleDbCommand(sql, conn)
With cmd
.Parameters.AddWithValue("@id", CInt(txt_id.Text))
.Parameters.AddWithValue("@name", txt_name.Text)
End With
ra = cmd.ExecuteNonQuery()
MessageBox.Show("เพิ่มข้อมูลเรียบร้อยแล้ว " & ra)
conn.Close()
|
 |
 |
 |
 |
Date :
2010-05-24 17:04:22 |
By :
tungman |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ลองทำตามแล้ว ไม่หายครับ ไม่รู้เป็นที่อะไร หาเหตุไม่เจอสักที
|
 |
 |
 |
 |
Date :
2010-05-24 21:12:55 |
By :
pigkapu1 |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ลองดู
Code (VB.NET)
sql = "insert into [book_properties] ([book_id], [book_name]) values (@id, @name)"
|
 |
 |
 |
 |
Date :
2010-05-24 21:16:19 |
By :
tungman |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ขอบคุณมากเลยที่ช่วย แต่ยังไม่ผ่านครับ หรือผมต้องไปดูจุดอื่น แต่ผมทำแบบนี้ก็ผ่านนะ แต่อยากให้รับค่าจาก textbox
Code (VB.NET)
sql = "insert into book_properties(book_id,book_name)values(123,'123')"
|
 |
 |
 |
 |
Date :
2010-05-24 22:06:21 |
By :
pigkapu1 |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ว่าอยู่ insert สั้นๆ ไม่กี่ field ไม่น่าจะผิด id type เป็น int ใช่ปะคะ
Code (VB.NET)
.Parameters.AddWithValue("@id", CInt(txt_id.Text))
ไหงบอกว่า Must declare the scalar variable "@id". ค่าของ text เป็น null หรือเปล่านี่
nonsense จิงๆเลยๆ คือ error แบบนี้ได้แต่แนะกันละค่ะเพราะไม่เห็น table ของคุณด้วย
ลองแก้เป็น
Code (VB.NET)
dim idCapture As integer = 0
int32.TryParse( txt_id.Text ,idCapture )
.Parameters.AddWithValue("@id", idCapture )
ปล. ตอบแทนนะคะพี่ตึ๋งนี่ก้อดึกแล้วพักผ่อนละกันค่ะ
|
 |
 |
 |
 |
Date :
2010-05-24 22:50:56 |
By :
blurEyes |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|