Data Debugger Visualizer

Sample Image - DataDebuggerVisualizer.gif

Introduction

These data visualizers for Visual Studio 2005 extend the Special QuickWatch for a DataSet that I found invaluable in VS 2003.

What it does?

These visualizers provide the following features:

  • Visualization for DataSets, strongly typed DataSets, DataTables, DataViews, DataRows and DataColumns.
  • Modified rows display in red.
  • Modified cells display in bold red.
  • Added rows display in blue.
  • If deleted rows exist, they can be viewed by selecting the Deleted Rows radio button.
  • A Row Filter can be established for active or deleted rows, using standard row filter expressions.
  • Additional cell and row properties display in the bottom grid. These properties are: cell original value, cell error message, row state, row error message.
  • When visualizing a DataRow, the respective row will be selected in the visualizer's grid.
  • XML representation of the DataSet can be in the format generated by the XmlSerializer (as used by the Web Service framework, for example) or by the DataSet's WriteXmlSchema and WriteXml methods.

Using the code

For now, I'll leave examination of the code as an exercise for the reader.

Technical notes

  • The visualizer DLL file is installed into your [VS8]\Common7\Packages\Debugger\Visualizers directory as part of the build. To remove it, delete the DotNetDan.Visualizers.dll file.
  • Multi-threading is used to load the visualizer form at the same time as serializing across the data from the debuggee to the debugger process. This may not be the fastest technique on non-HyperThreaded single-CPU machines, and complicates the code, so is a potential refactor target.
  • The visualizers use the new binary RemotingFormat facility of the DataSet and DataTable objects for enhancing the performance of serializing the objects across the Debuggee and Debugger processes.
  • At the time of writing, the DataGridView control wasn't particularly well documented and so getting the styles right was of more effort than expected and may not be the best way.
  • Programmatically selecting a row inside of a DataGridView (or DataGrid) is still way too hard. It requires a combination of DataViews, BindingSources and brute force. See DataTableVisualizerTab.OnVisibleChanged for the code that does the trick.
  • The bottom "grid" that displays additional cell and row properties consists of text boxes and uses the .NET 2.0 IPropertyChange interface of the DataTableProperties object for its binding.
  • I intend to look at enabling modifications to the data in the near future. Oh yeah, and improve the icons. :)
  • 来自:http://www.ueow.com
        
posted @ 2008-10-06 09:10  广陵散仙(www.cnblogs.com/junzhongxu/)  阅读(205)  评论(0编辑  收藏  举报