Reputation: 6319
I can see the db file in the left pane of intellij but when I double click the file, nothing is opened. Also, I am on a trial of ultimate edition.
Upvotes: 13
Views: 18810
Reputation: 59
UPDATE: https://stackoverflow.com/a/75808103/10366119. It worked for me when I used it. Try it and let me know if it works for you too.
Upvotes: 0
Reputation: 32006
An SQLite database is not a simple file that can be opened via a double click. To access a database, a Database driver needs to be defined to be used with the file. Here's how you can configure the database for use:
Upvotes: 33