VS Data Team's WebLogAll things Visual Studio Data related.How to retrieve stored procedure return values from TableAdapter- August 21, 2006 This entry was originally posted on SmartClientData blog. If youve been wondering why you are not able to access stored procedure return values from TableAdapter, heres the solution for you. I will use tbTasks table and spInsertTask stored procedure to demonstrate the solution. You can see definitions for both below. CREATE TABLE dbo.tbTasks ( intID INT NOT NULL IDENTITY(1,1), strName VARCHAR(100) NOT...http://blogs.msdn.com/vsdata/archive/2006/08/21/711310.aspx |