J
Jay
In sql server I can run the following query command to update QtyOnPO field.
UPDATE ItemsDetails
SET QtyOnPO = QtyOnPO + 1
WHERE (ItemDetailID = 1)
This will add 1 to QtyOnPO field.
In VB.NET how can I use this?
The following is my code but it gives an error "Name 'QtyOnPO' is not
declared".
ExecNonQuery("UPDATE Pricing SET QtyOnPO = " & QtyOnPO +
row.Cells(Me.Qty.Index).Value & " WHERE ItemDetailID = " & intItemDetailID)
Please help
UPDATE ItemsDetails
SET QtyOnPO = QtyOnPO + 1
WHERE (ItemDetailID = 1)
This will add 1 to QtyOnPO field.
In VB.NET how can I use this?
The following is my code but it gives an error "Name 'QtyOnPO' is not
declared".
ExecNonQuery("UPDATE Pricing SET QtyOnPO = " & QtyOnPO +
row.Cells(Me.Qty.Index).Value & " WHERE ItemDetailID = " & intItemDetailID)
Please help