Reputation: 823
I have just installed the intellij idea plugin DB Navigator to view Postgresql database and I am wondering whether I can show the values of the user-defined columns or not,plus is it possible to update/insert record by the gui tool not by writing sql statement?
Upvotes: 2
Views: 5565
Reputation: 16689
You don't need that plugin to achieve what you want. Just use the basic database integration.
Open the Database view: View > Tool Windows > Database
(or click on Database
on the right ribbon), add your Postgres database, select your table and open the Table Editor (F4
). Now you can add, delete and update entries without writing SQL.
Upvotes: 1