Stored Procedure, Web Service, Dataset, Argh...
I have a Web Service that is calling a Stored Procedure in MS SQL 2000, the only problem is i dont remember how to get the returned results from the procedure to show from my web service. I can execute a procedure with no problem as long as i dont get data back, but i am running a procedure to get data back, my return type for the procedure is a DataSet, so i guess i need to get the procedure results into my dataset to return. Help!
Thanks!
Re: Stored Procedure, Web Service, Dataset, Argh...
Dear Serge or any one else can explain these steps.... infact i will be realy thankful
Re: Stored Procedure, Web Service, Dataset, Argh...
He created a method, getMyData, that can be called as a webservice method to return a dataset object. The method simply creates a connection to the database, creates a dataset object, fills that object with data, and returns it. Does that make sense?
Re: Stored Procedure, Web Service, Dataset, Argh...