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 6763889
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T14:31:48+00:00 2026-05-26T14:31:48+00:00

I am trying to display the data using parametrized query try { SqlConnection xconn

  • 0

I am trying to display the data using parametrized query

try
{
 SqlConnection xconn = new SqlConnection();
 xconn.ConnectionString = @" Data Source=servername; Database=master; Trusted_Connection=yes ";
 xconn.Open();
 SqlCommand ycmd = new SqlCommand ("select * from tablename where column1 = @name", xconn);
 ycmd.Parameters.Add("@name", dropdownlist.SelectedValue);
 SqlDataAdapter da = new SqlDataAdapter(s,xconn);
 SqlCommandBuilder cmdbuilder  = new SqlCommandBuilder(da);

 DataTable dt = new DataTable();
 da.Fill(dt);
 gridview.DataSource = dt;
 gridview.DataBind();
}
catch(Exception ex)
{
  label.Text = ex.Message + "\n" + ex.StackTrace;
 }

How do I get it to work?

  • 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-05-26T14:31:49+00:00Added an answer on May 26, 2026 at 2:31 pm

    Try this:

    try 
    { 
     SqlConnection xconn = new SqlConnection(); 
     xconn.ConnectionString = @" Data Source=servername; Database=master; Trusted_Connection=yes";
     SqlCommand ycmd = new SqlCommand ("select * from tablename where column1 = @name", xconn); 
     ycmd.Parameters.Add("@name", dropdownlist.SelectedValue); 
     SqlDataAdapter da = new SqlDataAdapter(ycmd);
    
     DataTable dt = new DataTable(); 
     da.Fill(dt); 
     gridview.DataSource = dt; 
     gridview.DataBind(); 
    } 
    catch(Exception ex) 
    { 
      label.Text = ex.Message + "\n" + ex.StackTrace; 
    }
    

    You don’t need to call SqlConnection.Open() when you are using the SqlDataAdapter.Fill() method. In that method it opens up the connection and disposes/closes it when complete. (this isn’t the problem, just an FYI)

    The way you created your SqlDataAdapter is the problem. You didn’t create it with the SqlCommand as a constructor, just the command text. Because of that, you didn’t pass in the parameter that was specified in the SqlCommand class.

    Let me know if that works. And if that doesn’t work, try manually running this query in SSMS to ensure that it actually returns a result set. Also, make sure that your ListControl.SelectedValue property contains something. Do this by debugging and analyze what is stored there.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to display data from my database to a Jsp page using
I am trying to display a set of data using a DataTemplate in an
I'm trying to display some data points using google graphs, but unfortunately there is
I'm trying to display data from an array of objects obtained using another company's
I am using a table to display data pulled from two database tables. I
I am trying to create a table to display some data using iterator over
I'm using c# asp.net, just trying to display data in a read-only format once
I am entering some data into this database and then trying to display that
I'm trying to read data using web service and display it on a costumized
i'm using Dojo 1.6 and trying to update an Html-Store with new data using

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.