Is there a tool other than ij to look into a local derby database (folder)?

柔情痞子 提交于 2019-11-27 03:53:00

问题


I'm using Derby ij to look into my local Apache Derby database. It's just a folder and I connect to it like this:

 connect 'jdbc:derby:C:\Users\Torben\MyDatabase' USER 'me' PASSWORD 'secret';

It works, but I don't really like to look into the database in the console. Is there another tool for this? The best would be something with a GUI.


回答1:


Squirrel SQL can connect to an Apache Derby database. Getting Started using the SQuirreL SQL Client




回答2:


I simply use NetBeans IDE (Services -> Databases) to connect to my local or remote derby databases.

You can also create new derby databases there.




回答3:


I use DBeaver Community Edition (free and open source).

When comparing DBeaver CE 6.0.2 (2019-04-08) against SQuirreL 3.9.1 (2019-02-24) I noticed that SQuirreL does not show some database objects (eg. sequences).

DBeaver supports intellisense / auto-completion, updating table rows in-place (ie. "select for update"), and can globally apply filters on schemas and catalogs in connection settings (eg. exclude SYS schemas from the object tree display). It can also run pre- and post-connection scripts (handy for initialising an ij session with preferences eg. protocols).



来源:https://stackoverflow.com/questions/4424892/is-there-a-tool-other-than-ij-to-look-into-a-local-derby-database-folder

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!