简体   繁体   English

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

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

I'm using Derby ij to look into my local Apache Derby database.我正在使用 Derby ij 来查看我的本地 Apache Derby 数据库。 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.最好的是带有 GUI 的东西。

Squirrel SQL can connect to an Apache Derby database. Squirrel SQL可以连接到 Apache Derby 数据库。 Getting Started using the SQuirreL SQL Client 开始使用 SQuirreL SQL 客户端

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). DBeaver 支持智能感知/自动完成,就地更新表行(即“选择更新”),并且可以在连接设置中对模式和目录全局应用过滤器(例如,从对象树显示中排除 SYS 模式)。 It can also run pre- and post-connection scripts (handy for initialising an ij session with preferences eg. protocols).它还可以运行连接前和连接后脚本(方便使用首选项初始化 ij 会话,例如协议)。

在此处输入图片说明

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 数据库。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM