在基于内存的 derby 数据库 (netbeans) 中自动创建表结构

发布于 2024-09-06 07:27:41 字数 274 浏览 4 评论 0原文

我正在开发一个简单的程序,现在我正在 netbeans 中工作,并在内存中使用 derby 数据库,并将其设置为创建数据库(如果数据库不存在)。

 Connection con = DriverManager.getConnection("jdbc:derby://localhost:1527/memory:APP;create=true", "APP", "APP");

我的问题是......虽然它创建数据库,但它不创建表结构......我如何让程序也创建它?

I have a simple program I am working on, right now I am working in netbeans and using the derby database, in memory, and have it set to create the database if it doesn't exist.

 Connection con = DriverManager.getConnection("jdbc:derby://localhost:1527/memory:APP;create=true", "APP", "APP");

My question is... while it creates the database, it does not create the table structure.. how do I get the program to create that as well?

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

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

发布评论

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

评论(1

与往事干杯 2024-09-13 07:27:41

查看此链接它介绍了如何以编程方式创建表来自 Java。
此链接告诉您如何使用数据填充表。

Look at this link it has how to create a table programatically from Java.
This link tells you how to populate the table with Data.

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