Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个简单的程序,现在我正在使用netbeans 并在内存中使用derby 数据库,如果它不存在,则将其设置为创建数据库。
Connection con = DriverManager.getConnection("jdbc:derby://localhost:1527/memory:APP;create=true", "APP", "APP");
我的问题是......虽然它创建了数据库,但它没有创建表结构......我如何让程序也创建它?
看看这个链接,它有如何从 Java 以编程方式创建一个表。 此链接告诉您如何使用数据填充表。