I'm trying to create a Microsoft SQL Report in Visual Studio 2012. My data input for the report is an XML binary file stored in a database.
To break it down, this is what I would like to do:
Retrieve the XML binary file from the database
Populate the report with the content of the XML
Create a PDF version of the report
Step 1 and 3 are not a problem. But step 2 is. I don't know how to use the XML data in a dataset so I use it in the report.
Is there something fundamental I'm missing?
I have created many reports before by using just data from a database but never from XML.
Thank you.