We're a community of 1077K IT Pros here for help, advice, solutions, professional growth and fun. Join us!
1,076,371 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Start New Discussion Reply to this Discussion

I attempted to get the records from the MySQL database and display it on a

I attempted to get the records from the MySQL database and display it on a Grid View but nothing appeared. The code is below:

MySqlConnection myconn = new MySqlConnection("server=localhost;user id=root;password=db;database=workers;");

   // myconn.Open();
    string strSQL = "select * from details";



    MySqlDataAdapter mydata = new MySqlDataAdapter(strSQL, myconn);

    MySqlCommandBuilder cBuilder = new MySqlCommandBuilder(mydata);

    DataSet ds = new DataSet();

    mydata.Fill(ds, "details");

    GridView1.DataSource = ds.Tables[0];
    GridView1.DataBind();
   // myconn.Close();
2
Contributors
9
Replies
12 Hours
Discussion Span
1 Year Ago
Last Updated
10
Views
venkateshyeluri
Newbie Poster
14 posts since Mar 2012
Reputation Points: 0
Solved Threads: 0
Skill Endorsements: 0

**Are you sure you have the right connection string? **
And if there are data inside details table?
If so you can try this code:

MySqlConnection myconn = new MySqlConnection("server=localhost;user id=root;password=db;database=workers;");
string strSQL = @"SELECT * FROM details";
MySqlDataAdapter mydata = new MySqlDataAdapter(strSQL, myconn);
DataTable table = new DataTable("myTable");
mydata.Fill(table);
GridView1.DataSource = table.DefaultView;
//close and  dispose all iDisposable objects on the end!

This has to work 100% if all is ok (connection string and if there are data inside table). There is really nothing else that can be wrong for not showing data in dgv.

Mitja Bonca
Posting Maven
2,561 posts since May 2009
Reputation Points: 642
Solved Threads: 486
Skill Endorsements: 13

Yes my connection string is correct!

still nothing appeared when I run the page.. Is there anything else I have to change in web.config??

venkateshyeluri
Newbie Poster
14 posts since Mar 2012
Reputation Points: 0
Solved Threads: 0
Skill Endorsements: 0

Put a break point before this code and check if DataTable gets fill up (I means in this code). When Fill() method goes over, put a mouse cursor over "table" and you will see one magnifying glass. Double click on it, and another window will open with the data. There must be the data inside, but I am affraid it will empty (thats why the GridView is empty too).
This means your database table has to data inisde.

BTW: What database do you use this? mySql?

Mitja Bonca
Posting Maven
2,561 posts since May 2009
Reputation Points: 642
Solved Threads: 486
Skill Endorsements: 13

Yes I am using MYSQL

venkateshyeluri
Newbie Poster
14 posts since Mar 2012
Reputation Points: 0
Solved Threads: 0
Skill Endorsements: 0

Have you checked what I told you to, by putting a break point into this code?

Mitja Bonca
Posting Maven
2,561 posts since May 2009
Reputation Points: 642
Solved Threads: 486
Skill Endorsements: 13

Just now I have tried using break point, dataTable has my database content. From here it is not posting into GridView

venkateshyeluri
Newbie Poster
14 posts since Mar 2012
Reputation Points: 0
Solved Threads: 0
Skill Endorsements: 0

Do you use GridView or DataGridView?

Mitja Bonca
Posting Maven
2,561 posts since May 2009
Reputation Points: 642
Solved Threads: 486
Skill Endorsements: 13

If THERE really are data inside dataTable, the way you try to bind it should work:
GridView GridView1=new GridView();
GridView1.DataSource = table;
GridView1.DataBind();

In case if not, you can try binding like:
GridView1.DataSource = ((DataTable)Session["myDatatable"]).DefaultView;
GridView1.DataBind();

Mitja Bonca
Posting Maven
2,561 posts since May 2009
Reputation Points: 642
Solved Threads: 486
Skill Endorsements: 13

I use GridView,
I have tried either case.. till here
GridView1.DataSource = table;
when I use Maganifier it shows me table content.. when comes to DataBind(); it shows null

And using this second method
GridView1.DataSource = ((DataTable)Session["myDatatable"]).DefaultView;
this raises to an error "Object reference not set to an instance of an object."

venkateshyeluri
Newbie Poster
14 posts since Mar 2012
Reputation Points: 0
Solved Threads: 0
Skill Endorsements: 0

This article has been dead for over three months: Start a new discussion instead

Post: Markdown Syntax: Formatting Help
 
You
View similar articles that have also been tagged:
 
© 2013 DaniWeb® LLC
Page rendered in 0.0888 seconds using 2.7MB