I have a function which have return type DataRow and the parameters for the fucntion
are the parameters for the stored procedure.
I have to execute the Stored Procedure with given parameters and populate the datarow so that
the return will be the populated DataRow with the output of the stored procedure.
Again I have to retrieve data from the same datarow, perform some calculations in another function
which is going to use above datarow values, and give result in double or int datatype.
I have executed the Stored Procedure and now i m trying to store the data in the datarow
so that I can further retrieve it.
do anybody have idea how to insert and retreive data from DataRow in above case.
Thanks in advance,