Search code examples
c#ssismessagebox

How to display results as a table within SSIS


Is it possible to put whole table with results in a MessageBox.Show()?

I'm passing results from SQL to an SSIS variable using FullResultSet.

I can print each of the results within a message box separately (without table).

But clicking OK many times to verify my results it's quite annoying. Would it be possible to print my results at once?

error


Solution

  • I think you should probably approcah this in a different way.

    Try adding a Data viewer to your control flow. combined with breakpoints this is a very efficient way of being able to peek into the data within your package.