Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8898555
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T00:38:28+00:00 2026-06-15T00:38:28+00:00

I came across the situation where I have to return a query from sp

  • 0

I came across the situation where I have to return a query from sp and
assign that to session.This sample query.Original one is large one having inner join on many table.Table name is dynamic.There 2 query in the sp.One should execute and other can send to the C# page.How to access that query in C#.I don’t want it’s result.just query.I have shown only one query here that I want to return.

example :

create Procedure Sample
(
@id int
)
as
begin
declare @pid varchar(10)
declare @query varchar(500)

set @pid = cast(@id as varchar(10))

set @query ='select * from Table1 where id = '+@pid+'' 
--Execute sp_executesql @query
--print @query
select @query
end
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T00:38:29+00:00Added an answer on June 15, 2026 at 12:38 am

    After Setting @Query Use SELECT. This will return to c sharp page.
    Make sure not to use ExecuteNonQuery() method

    SET @query ='select * from Table1 where id = '+@pid+'' 
    SELECT @query AS myQuery
    

    In c sharp, for example

    DataSet ds;
    YourDataAdapter.Fill(ds);
    string query = ds.Tables[0].Rows[0]["myQuery"].ToString();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I came across with this situation. I have one already developed Application in 2.0,
I came across this situation while migrating our DB from Foxpro to SQL. Below
While answering one of the question, I came across this interesting situation. If I
I came across a situation where I have a pretty big file that I
Today I came across one situation, here it is. I have a db object
I haven't actually came across this situation yet but i will probably have a
I have NHibernate sessions cached in the ASP.NET session. I came across a situation
I came across this problem,I have got an algorithm that I need to implement
I have came across a situation where I need to merge values from two
Came across this code: <?php require_once 'HTTP/Session/Container/DB.php'; $s = new HTTP_Session_Container_DB('mysql://user:password@localhost/db'); ini_get('session.auto_start') or session_start();

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.