Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to Update Dataset for RDLC Reports

I have created DataSet for RDLC reports. Now i have changed my Stored Procedure by adding some new Columns to it. DataSet contains different Stored Procedures, now how can i update the DataSet with out deleting and Re Creating it. So that new added Columns are available on DataSet for use.

like image 481
Shahid Iqbal Avatar asked May 28 '14 08:05

Shahid Iqbal


People also ask

How do I add a DataSet to Rdlc?

To create a dataset for the RDLC report, click Reporting under Visual C# Items. Click Report, and then click Add. The Report Wizard opens. Enter a dataset name in Name field.To choose a data source for the dataset, click New on the right of Data source drop-down combo box.


2 Answers

In visual studio if you have the RDLC open you can open the Report Data window by pressing CTRL+ALT+D.

From here you click on datasets and then right click on the data set to refresh it.

like image 56
Carel Schoombee Avatar answered Sep 22 '22 14:09

Carel Schoombee


I have solved it..

  • Open DataSet
  • Right Click on Required Stored Procedure.
  • Clicked On Configure.
  • Click Next, Next and Finish.

Now go to RDLC Report.

  • Right Click on the Dataset and click Refresh.
like image 31
Shahid Iqbal Avatar answered Sep 24 '22 14:09

Shahid Iqbal