What does the @ do in the following statement?
What does the @ do in the following statement?
Is this used to pick the particular DB field associated
with the row in the update statement?
Dim strSQL As String = _
"UPDATE [Products] SET [ProductName] = @ProdName, " & _
"[UnitPrice] = @UnitPrice, [ProductDescription] = @ProdDesc, [LastUpdated] = @LastUpdated " & _
"WHERE [ProductID] = @ProductID"
|