Db2 for IBM i tools is a reimplementation of the Schemas tool inside of Access Client Solutions. There is a lot to do so it will not likely be on the Marketplace any time soon.
See the Projects tab to see our progress and what you could work on.
- Each object type in the tree list has a Defintion View (by clicking on the object). Each Definition View exists in it's own folder. For example the table definition exists at
./src/panels/table
. This means other types will get their own folder for their Definition View. Views might be./src/panels/view
and procedures might be./src/panels/procedure
. - Each object type has a class in the
./src/database
folder. For example, the table Definition View has the class./src/database/table.js
which has all the methods needed to fetch information for that view. You may also add other static methods which could be used for commands specific to the table. Other objects would also get their own class.
- This project requires VS Code and Node.js.
- fork & clone repo
npm i
- 'Run Extension' from vscode debug.