I am trying to create a Microsoft SQL report in Visual Studio 2012. My report data is a binary XML file stored in a database.
To break it down, this is what I would like to do:
Get binary XML file from database
Fill the report with XML content
Create a PDF version of the report
Step 1 and 3 are not a problem. But there is a step 2. I do not know how to use XML data in a dataset, so I use it in a report.
Is there something fundamental that I'm missing?
I have created many reports before, using only data from a database, but never from XML.
Thanks.
source share