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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T18:08:42+00:00 2026-06-11T18:08:42+00:00

I have a question. I’ve tried to solve it all day long and I

  • 0

I have a question. I’ve tried to solve it all day long and I am really stuck. I’m using VS2010 and SQL Server 2012 (quite a bad combination) and I’m trying to execute a fairly simple piece of C# and ASP.net code which goes like this:

string conn = ConfigurationManager.ConnectionStrings["BazaConnectionString"].ConnectionString;

SqlConnection connect = new SqlConnection(conn);

SqlDataAdapter sqlAdapter = new SqlDataAdapter();
SqlCommand cmd = new SqlCommand("SELECT * FROM  Seminar", connect);
sqlAdapter.SelectCommand = cmd;

DataTable tablica = new DataTable();
sqlAdapter.Fill(tablica);

GridView1.DataSource = tablica;
GridView1.DataBind();

The problem is my gridview is always empty. I have data in the table and SELECT * should select all of it but I get an empty table returned. I’ve been trying Dataset and DataTable but nothing seems to work. Any help is appreciated. Thanks in advance.

  • 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-11T18:08:43+00:00Added an answer on June 11, 2026 at 6:08 pm

    I have a hunch that you might be running into an exception – possibly a timeout – and you’re not dealing with this properly…

    Try something like this:

    string conn = ConfigurationManager.ConnectionStrings["BazaConnectionString"].ConnectionString;
    
    using (SqlConnection connect = new SqlConnection(conn))
    using (SqlCommand cmd = new SqlCommand("SELECT * FROM  Seminar", connect))
    using (SqlDataAdapter sqlAdapter = new SqlDataAdapter(cmd))
    {
       try
       {
          DataTable tablica = new DataTable();
          sqlAdapter.Fill(tablica);
    
          GridView1.DataSource = tablica;
          GridView1.DataBind();
       }
       catch(Exception exc)
       {
           string msg = exc.GetType().FullName + ": " + exc.Message;
       }
    }
    

    If you execute this code – do you happen to fall into the catch block? If so: what’s the exception? What does it tell you?

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

Sidebar

Related Questions

I have question that seems simple to you all but can't really get it.
I have question about XSLT1.0. The task is to write out in HTML all
I have question I'm developing small application to desktop in win Forms. I'm using
I have question how to stop the timer. I don't really understand how it
I have question here, i design multiview application using view base template. Page 1
I have question how to replace whitespace with _ using notepad++ regex between []
I have question related to bean to json serialziation/deserialization using Jackson. Previously I have
I have question regarding shared memory segmentation in c using POSIX system calls. Is
I have question regarding about finding subview using '.tags' in one UIView. for (UIView
I have question about the need of using @configurable . I have gone through

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.