Question
Insert Procedure
I am trying to get an insert procedure to add a date and also
a product number to my database.
i tried using...
INSERT INTO InvReview (Date, ProductNum)
VALUES (ReviewDate, ReviewStockNum)
with the variables
ReviewDate (Date())
ReviewStockNum (InvReview.Fields.Item("ProductNum").Value)
the date will work ok but i cannot seem to figure out how to get the ProductNum from my recordset into the database.
how can i get a dynamic field into my stored procedure
i tried using...
INSERT INTO InvReview (Date, ProductNum)
VALUES (ReviewDate, ReviewStockNum)
with the variables
ReviewDate (Date())
ReviewStockNum (InvReview.Fields.Item("ProductNum").Value)
the date will work ok but i cannot seem to figure out how to get the ProductNum from my recordset into the database.
how can i get a dynamic field into my stored procedure
