Hi,
I am using Visual studio integration and I need to call a stored procedure. I used
Process.ExecuteStoredProcedure(string procedure, object[] inputObjects, ref object outputObjects, string connectionString)
But it doesnt work. I used it like this;
object res = process.ExecuteStoredProcedure("SELECTALLUSERS", parameters, ref outputs, connectionString);
The problem is that method always returns 0 and also outputs is not changing.
Could you tell me how I can use this method?
Thanks..