C# and T-SQL command-line Utility
- by Chad Sellers
Group,
Part 1:
I'm currently working on a command line utility that can take args and update a local database. The only issue I have is once i established a "Data connection"..how can I use those args for queries and searches.
For example:
~//arrInput.exe "parm1" "pram2" "pram3"
Part 2:
I would like to take in command line args and use them as input parms for a "stored proc". Once finished execution....used the same inputs crate a log file.
For example output file:
mm-dd-yyyy hh:mm:ss - pram1,pram2,...
pram1: updated/failed
pram2: update/failed
Thanks,
Chad