在基于内存的 derby 数据库 (netbeans) 中自动创建表结构
我正在开发一个简单的程序,现在我正在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看此链接它介绍了如何以编程方式创建表来自 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.