I want to work with SQL scripts in my desktop application. But I can not write any sql statements with parameters and call them.
INSERT INTO table
VALUES (..., ..., ...)
Above should my SQL statement; where I want to fill the values at c# side. How should my SQL statement; what is its notation? And how can I add at c# parameters to it.
Thanks !