Below is the project which shows all the existing procedure names in any particular database schema into a tree-view control. We have used a class library "stored_proc_db_disp_dll" and imported it's reference into a windows project. The class library contains a function "DisplayProcedures()" which returns a list collection containing all procedure names of a database schema and windows project binds that list to tree-view control. Below is the design view of the project: Tree-view displaying all procedure names of a db schema Here is code for class library: namespace stored_proc_db_disp_dll { public class Class1 { MySqlConnection con = new MySqlConnection("server=localhost;uid=root;pwd=root;database=test"); MySqlCommand cmd=null; MySqlDataReader dr; publ...
Blog which contains C#, asp.net, asp.net MVC, Selenium webdriver with core java, Bootstrap, Jquery and many more