jorgen.ringen
jorgen.ringen

Reputation: 1325

Database view missing from IntelliJ

I can`t see the "database" view in "View -> Tool windows" in Intellij 12.

Anyone experienced the same problem? How do I get it back?

Upvotes: 42

Views: 69750

Answers (8)

Farukh Khan
Farukh Khan

Reputation: 305

Database tools are built-in with intellij new versions. You can Go to Plugins in the installed section, search for Database Tools and SQL mark it check, Apply and restart your idea. You will see the Database tool in your sidebar

Upvotes: 1

Vivek Bhandari
Vivek Bhandari

Reputation: 201

Database tools are supported in the Ultimate edition only: https://www.jetbrains.com/idea/features/editions_comparison_matrix.html

Upvotes: 1

midi
midi

Reputation: 4048

Btw. you most likely don't have the Database option under View -> Tool Windows if you're running IntelliJ Community.

enter image description here

Upvotes: 15

Choxmi
Choxmi

Reputation: 1664

I had the same problem. Even searching for the plugin "Database navigator" didn't work for me. So first I had to install database navigator from repositories and install it first. (File -> Settings -> Plugins -> Browse Repositories | Search for 'Database Navigator' and install it. Sometime it will require a restart after the installation.)

Additional :

This would install Database navigator. But it's not possible to create tables from database navigator. It will give this message.

SQLite support error

In order to create a table, you have to install sqlite3 command line tool from official SQLite official site. Then you can use terminal to create tables and other operations.

SQLiteStudio is much easier option. Hope this would helpsomeone.

Upvotes: 5

ratish
ratish

Reputation: 491

This can be a repeat of deep's answer. But will help newbies who aren't familiar with Intellij jargon's.

Ctrl+Alt+s will take you to settings. From Settings go to plugins.

Add Database Navigator from the repository if it is not enabled.

enter image description here

After this go to View-> Tool Windows -> Database navigator

enter image description here

Upvotes: 36

smilyface
smilyface

Reputation: 5513

I am just copy and pasting answer of jorgen.ringen (who asked the question) from the comment.

Okey, saw some problems in the log that the heroku intellij-plugin was causing problems. Removed the plugin and restarted, and the database plugin plus a couple of other ones showed up!

So moral is: if any plugins are causing problems, uninstall them, cause they may break others! :-)

Upvotes: -1

deep
deep

Reputation: 1676

As of intellij version 2017.1, search for the plugin "Database navigator" in Settings -> Plugins. Then you can open the db browser from View -> Tool Windows -> DB Browser.

Upvotes: 21

Salim Hamidi
Salim Hamidi

Reputation: 21381

in the IDE menu bar, select the menu view> tool windows, if "Database Tools and SQL" plugin is enabled, we'll find a menu "database", so click on it to open the correspending panel

Upvotes: 0

Related Questions