Click here to Skip to main content
15,993,835 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello guys,

How can I pass dataset to report viewer in visual studio. Note I already create the dataset I just need to pass it?

All I get so far is this.

string sql = "SELECT * FROM product where dat>='" + yy + "' and dat<'" + xx + "'and product_sold>0 and total >0";
            SqlDataAdapter dscmd = new SqlDataAdapter(sql, con);
            DataSet5 ds = new DataSet5();
            dscmd.Fill(ds, "product");
MessageBox.Show(ds.Tables["product"].Rows.Count.ToString());


Now, I want to pass to report viewer?
Posted
Comments
Prasad Khandekar 15-Apr-13 11:30am    
Have you read the related documentation?
Member 8584763 16-Apr-13 2:05am    
Yes, I've but they're not talking about the problem that I face.
mohssenvox 18-Apr-13 11:06am    
Hi,
i think another easeri way to do this...
only u need your *.rpt file with dataset then you can use other ways to get report from your DB...

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900