如何将HSQL DB与java应用程序集成

发布于 2024-11-18 12:18:36 字数 1539 浏览 1 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

巾帼英雄 2024-11-25 12:18:36

你的问题非常广泛,实际上不可能回答,但无论如何我都会尝试。

HSQLDB 与任何其他 DBMS 没有什么不同(除了它可以与您的应用程序在同一进程中运行 - 这与 PostgreSQL 等不同)。

手册第一章描述了启动数据库,其中包括一章关于如何创建新数据库

除此之外,只需运行你的CREATE TABLE 语句,例如在您的应用程序中,包含 SqlTool 或任何您喜欢的(基于 JDBC 的)SQL 客户端。

手册中还描述了部署和集成到应用程序中: http://hsqldb .org/doc/2.0/guide/deployment-chapt.html

桌面应用程序中的嵌入式数据库”一章可能也很有趣给你。

Your question is extremely broad and not really possible to answer, but I'll try anyway.

HSQLDB is not different to any other DBMS (except that it can run in the same process as your application - that is different e.g. to PostgreSQL).

Starting the database is described in the first chapter of the manual including a chapter on how to create a new database

Apart from that, just run your CREATE TABLE statements e.g. from within your application, the included SqlTool or any (JDBC based) SQL client that you like.

Deployment and integration into your application is described in the manual as well: http://hsqldb.org/doc/2.0/guide/deployment-chapt.html.

The chapter "Embedded Databases in Desktop Applications" might also be interesting to you.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文