Project DescriptionThe Database Content Viewer will help any developer working on a database oriented application.
No longer creating complex SQL statements to inspect the complete data hierarchy of an object in the database.
See all the data, spread over different tables, for one specific entry in the base table.
How to useThis application will need some adaptations before it can be really used by the developers.
Every database is different so you first have to create a separate IDbModel implementation.
The following steps have to be taken in order to make your database work with this viewer :
- Think about which object is the main entry point for your application.
- Create a new class library project.
- Add a new 'LINQ to SQL Classes' item.
- Drag all your database objects that you want to see in the designer.
- Add a reference to the 'DatabaseViewer.Interfaces.dll'.
- Create a new class file that will implement the IDbModel interface.
- Implement the methods / properties :
- CreateTree
- FilterProperties
- LoadFromControl
- LoadTree
- Change the databaseviewer.config to be able to load your just created dll.
CreateTree
FilterProperties
LoadFromControl
LoadTree
More screenshotsThe startupscreen

A simple filled data screen
[image:data.png]