Skip to main content

TableAdapter Configuration problem while attaching storedProcedure with temp table in Typed Dataset

TableAdapter Configuration problem while attaching storedProcedure with temp table  in Typed Dataset

We create typed dataset (.xsd) for reporting (crystal report), 

 If  i am binding stored procedure with simple select query then it will configure TableAdapter properly
and returns the data columns in the select query of stored procedure.
But the problem is that when we are returning the data from temporary table (#temp) from our stored procedure, then it will throw error message ( The wizard TableAdapter configuring error: 
Generating Select Statement problem
while selecting #temp table) as here #temp table is temporary table created to return result & after that table is destroyed.

So to over come this error (problem) just add following lines into your stored procedure before creating & selecting data from temporary table.

IF 1=0 BEGIN
SET FMTONLY OFF
END

these lines will remove the specified error.

Hope this will help you .....
Thank you..

Comments

Popular posts from this blog

Asp.Net Web API

What is ASP.NET Web API? ASP.NET Web API is a framework provided by the Microsoft with which we can easily build HTTP services that can reach a broad of clients, including browsers, mobile, IoT devices, etc. ASP.NET Web API provides an ideal platform for building RESTful applications on the .NET Framework.   Difference between ASP.NET Web API and WCF Web AP I is a Framework to build HTTP Services that can reach a board of clients, including browsers, mobile, IoT Devices, etc. and provided an ideal platform for building RESTful applications. It is limited to HTTP based services. ASP.NET framework ships out with the .NET framework and is Open Source. WCF i.e. Windows Communication Foundation is a framework used for building Service Oriented applications (SOA) and supports multiple transport protocol like HTTP, TCP, MSMQ, etc. It supports multiple protocols like HTTP, TCP, Named Pipes, MSMQ, etc. WCF ships out with the .NET Framework. Both Web API and WCF can be self-hosted or can be...