I am wondering if someone could provide a sample code as how I can use
DataBasics.DataSources[""].ExecuteStoredProcedure(..)
My sproc takes 2 varchar input parameters and returns an integer value:
@HWID
@ComputerName
@iKassenId
i want to execute the sproc and get the Result integer.
Thanks !
I just made a test that comes accross fine using the StrataFrame sample. Here is my SF code:
And here is the alter for my stored procedure:
this is my sproc:
set
GO
ALTER
AS
HWID
thanks. that seems like it could be the problem. i wasnt aware of the use of select instead of return.
i will try changing it when i get back to work tommorow.