mquemazz
mquemazz

Reputation: 823

Intellij idea DB Navigator plugin limitation.

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

Answers (1)

Darek Kay
Darek Kay

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.

enter image description here

Upvotes: 1

Related Questions