At work, we sometimes need to execute a SQL script (we open this .SQL file -stored as C:\SQLScript\man.sql-, set proper parameters and then execute it). Right now I've create a C# application, this application is running on my computer and perform some operations against a DB server (the same server where the .sql script works) one of these operations include the execution of that script.
The problem is: how can I execute (from my C# application) the SQL script if it is stored as simple file rather than a real stored procedure?