除了 ij 之外,还有其他工具可以查看本地 derby 数据库(文件夹)吗?
我正在使用 Derby ij 来查看本地 Apache Derby 数据库。它只是一个文件夹,我像这样连接到它:
connect 'jdbc:derby:C:\Users\Torben\MyDatabase' USER 'me' PASSWORD 'secret';
它可以工作,但我不太喜欢在控制台中查看数据库。还有其他工具吗?最好的是带有 GUI 的东西。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Squirrel SQL 可以连接到 Apache Derby 数据库。
开始使用 SQuirreL SQL 客户端
Squirrel SQL can connect to an Apache Derby database.
Getting Started using the SQuirreL SQL Client
我使用 DBeaver Community Edition(免费且开源)。
在将 DBeaver CE 6.0.2 (2019-04-08) 与 SQuirreL 3.9.1 (2019-02-24) 进行比较时,我注意到 SQuirreL 不显示某些数据库对象(例如序列)。
DBeaver 支持智能感知/自动完成、就地更新表行(即“选择更新”),并且可以在连接设置中的架构和目录上全局应用过滤器(例如,从对象树显示中排除 SYS 架构)。它还可以运行连接前和连接后脚本(方便使用首选项(例如协议)初始化 ij 会话)。
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).
我只是使用 NetBeans IDE(服务 -> 数据库)连接到本地或远程 derby 数据库。
您还可以在那里创建新的德比数据库。
I simply use NetBeans IDE (Services -> Databases) to connect to my local or remote derby databases.
You can also create new derby databases there.