Babken Vardanyan
Babken Vardanyan

Reputation: 15040

Database view in IntelliJ IDEA does not show all databases of connection

I have added connection to localhost MySQL/MariaDB database in IntelliJ IDEA 14.1.5.

However the Database view tab is showing only one of my databases. How do I get IntelliJ to show the other databases as well?

Upvotes: 6

Views: 6273

Answers (2)

Johnny
Johnny

Reputation: 15413

In order to show all databases of the connection:

  1. Click on the number near the connection name (localhost in this example).
  2. In the popup, select All schemas.
  3. You should have all the table visible now.

enter image description here

Upvotes: 3

Babken Vardanyan
Babken Vardanyan

Reputation: 15040

Right-click on connection -> Properties -> Schemas and Tables tab -> select all the checkboxes in available databases tab -> click OK

Upvotes: 8

Related Questions