When I run the Query my parameter doesn`t send his value. What am I doing wrong?
Hi @Ricardo_Franco,
Here is the sample that to pass the parameter in the sql server.
Regards
Balamurugan.S
It didn`t work
What happened ?
My query “INSERT INTO invoices(name) VALUES (@name)” the “@name” its a parameter. And when i execute the query it can`t access the @name value that i set in the parameter as it is in the picture that i post
Main.xaml (4.1 KB)
I m using mysql odbc. Did I need some extra package installation?
the connection works
I can send value to the database. The issue is that i can`t get the values of the parameter when i call it like this “@parameterName”
Hi @Ricardo_Franco,
If you run this statement , it works well ?
“INSERT INTO invoices(name) VALUES (‘“& variable &”’)”
Regards
Balamurugan.S
yes. I just can`t use the parameter.
Regards