java 除了 ij 之外,还有其他工具可以查看本地 derby 数据库(文件夹)吗?

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/4424892/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-10-30 06:18:07  来源:igfitidea点击:

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

javadatabasederbyviewer

提问by Torben

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:

我正在使用 Derby ij 来查看我的本地 Apache Derby 数据库。它只是一个文件夹,我像这样连接到它:

 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.

它有效,但我真的不喜欢在控制台中查看数据库。有没有其他工具可以做到这一点?最好的是带有 GUI 的东西。

采纳答案by Bryan Pendleton

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

Squirrel SQL可以连接到 Apache Derby 数据库。 开始使用 SQuirreL SQL 客户端

回答by mvanle

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

我使用 DBeaver 社区版(免费和开源)。

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 CE 6.0.2 (2019-04-08) 与 SQuirreL 3.9.1 (2019-02-24) 进行比较时,我注意到 SQuirreL 没有显示某些数据库对象(例如序列)。

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).

DBeaver 支持智能感知/自动完成,就地更新表行(即“选择更新”),并且可以在连接设置中对模式和目录全局应用过滤器(例如,从对象树显示中排除 SYS 模式)。它还可以运行连接前和连接后脚本(方便使用首选项初始化 ij 会话,例如协议)。

回答by Stefan Uhlig

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

我只是使用 NetBeans IDE(服务 -> 数据库)连接到我的本地或远程 derby 数据库。

You can also create new derby databases there.

您还可以在那里创建新的 derby 数据库。