Is there any reason I would not be able to execute SQL Server commands from a Ninja script. I want to load data for variables in my strategy.
I assume all I would do is add a:
Using System.Data;
Using System.Data.SqlClient;
and add references to the references so if can find the dll's.
then I should be able to do a command like:
DataSet DataSet = new DataSet();
correct?
Thanks.....
Mark

Comment