Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi everybody.
I have a problem: I'm trying to user variable values to execute a dynamic update insert, but it's not working. The command line I'm using is
INSERT INTO * (ExecProcedure, ExecParametro1, ExecParametro2, ExecParametro3) VALUES (SalvaPedido, $(vL.ProdutosPedido), vL.RepresentantePedido, vL.ProdutoQuantidade)
It only works if I remove the $ from variable vL.ProdutosPedido, but in this case it inserts the name of variable instead of its value.
Anybody can help me?
Thanks in advance.
make this statement a variable. add the quotes for the variable
vValues = VALUES (SalvaPedido, '$(vL.ProdutosPedido)', vL.RepresentantePedido, vL.ProdutoQuantidade)
then do this.
INSERT INTO * (ExecProcedure, ExecParametro1, ExecParametro2, ExecParametro3) $(vValues)
make this statement a variable. add the quotes for the variable
vValues = VALUES (SalvaPedido, '$(vL.ProdutosPedido)', vL.RepresentantePedido, vL.ProdutoQuantidade)
then do this.
INSERT INTO * (ExecProcedure, ExecParametro1, ExecParametro2, ExecParametro3) $(vValues)
Erik, thank you for the answer.