 |
|
ช่วยดูโค๊ดหน่อยค่ะ Parameterized Query '(@Companyname nvarchar(4000),@ContactName nvarchar(4000),@Contac' expects parameter @Companyname, which was not supplied. |
|
 |
|
|
 |
 |
|
Code (VB.NET)
Dim sql As String = ""
sql = " Update Customers SET Companyname=@Companyname,ContactName=@ContactName,ContactTitle=@ContactTitle,Address=@Address,City=@City,Region=@Region,PostalCode=@PostalCode,Country=@Country,Phone=@Phone,Fax=@Fax WHERE CustomerID=@CustomerID"
Cmd = New SqlCommand(sql, mySQLConn)
For r As Integer = 0 To DataGridView2.RowCount - 1
With Cmd
.Parameters.AddWithValue("Companyname", CStr(DataGridView2.Rows(r).Cells(1).Value))
.Parameters.AddWithValue("ContactName", CStr(DataGridView2.Rows(r).Cells(2).Value))
.Parameters.AddWithValue("ContactTitle", CStr(DataGridView2.Rows(r).Cells(3).Value))
.Parameters.AddWithValue("Address", CStr(DataGridView2.Rows(r).Cells(4).Value))
.Parameters.AddWithValue("City", CStr(DataGridView2.Rows(r).Cells(5).Value))
.Parameters.AddWithValue("Region", DataGridView2.Rows(r).Cells(6).Value)
.Parameters.AddWithValue("PostalCode", CStr(DataGridView2.Rows(r).Cells(7).Value))
.Parameters.AddWithValue("Country", CStr(DataGridView2.Rows(r).Cells(8).Value))
.Parameters.AddWithValue("Phone", CStr(DataGridView2.Rows(r).Cells(9).Value))
.Parameters.AddWithValue("Fax", CStr(DataGridView2.Rows(r).Cells(10).Value))
.Parameters.AddWithValue("CustomerID", CStr(DataGridView2.Rows(r).Cells(0).Value))
End With
ConnectDB()
Cmd.ExecuteNonQuery()
Cmd.Parameters.Clear()
Next
MsgBox("Successfully")
mySQLConn.Close()
เมื่อรันแล้วเกิดเออเรอ
Parameterized Query '(@Companyname nvarchar(4000),@ContactName nvarchar(4000),@Contac' expects parameter @Companyname, which was not supplied.
ช่วยดูหน่อยนะค่ะ ขอบคุณค่ะ 
Tag : - - - -
|
|
 |
 |
 |
 |
Date :
2010-04-20 09:42:09 |
By :
Nicorobin |
View :
4311 |
Reply :
6 |
|
 |
 |
 |
 |
|
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ขาดนี่หรือเปล่า @
|
 |
 |
 |
 |
Date :
2010-04-20 10:08:58 |
By :
tungman |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ขาดตรงไหนอ่ะค่ะ ลองดูแล้วไม่เห็นเลยค่ะ
|
 |
 |
 |
 |
Date :
2010-04-20 10:12:38 |
By :
Nicorobin |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ฮ่วย
Code (VB.NET)
.Parameters.AddWithValue("@Companyname", CStr(DataGridView2.Rows(r).Cells(1).Value))
|
 |
 |
 |
 |
Date :
2010-04-20 10:17:19 |
By :
tungman |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ลองใส่แล้วค่ะแต่ก็เออเรอเหมือนเดิมอ่ะค่ะ
|
 |
 |
 |
 |
Date :
2010-04-20 10:37:05 |
By :
Nicorobin |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ได้แล้วค่ะพี่ขอบคุณพี่นะค่ะที่ช่วยให้คำตอบ
ขอบคุณค่ะ
|
 |
 |
 |
 |
Date :
2010-04-20 11:04:03 |
By :
Nicorobin |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|