ADO.Net DB Connection Visualizer Code
Status: Alpha
Brought to you by:
trev_hunter
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | BinaryRefinary DB Connection Visualizer ---------------------------------------- 1. Description 2. Fluff 3. Installation 4. Usage 6. Version History 7. Future Work 8. Contact/Links 1. Description -------------- This is a debugger visualizer add-on for Microsoft Visual Studio 2005. It gives you a quick way to run a SQL statement against a database connection and view the results in a data table. 2. Fluff -------- No warranty of any kind is provided. Use this software at your own risk. As it's public domain, feel free to use it in any way you like. I will do my best to support this utility and keep it up to date, but don't rely on me for urgent bug fixes or new feature implementations. 3. Installation --------------- Close all instances of Visual Studio Copy DBVisualizer.dll to "My Documents\Visual Studio 2005\Visualizers". 4. Usage -------- While debugging an application, hover your mouse over an object that inherits from DBConnection and Click on the drop-down beside the magnifying glass in the tooltip info. Select "BinaryRefinery DB Connection Visualizer" from the list. After the query form appears, enter a SQL statement and click "execute". Providing everything worked as planned, you should see the results of your query in the data table. 5. Version History ------------------ 0.0.0.5 (25 July, 2006) -Initial version released for feedback 6. Future Work ------------- Auto-complete for the SQL statement based on recently executed statements for a particular connection string. Misc features/fixes based on user feedback Test harness 7. Contact/Links ----------------- Author: Trevor Hunter (dev [at] trevhunter.com) SourceForge Website: http://sourceforge.net/projects/dbvisualizer/ |