Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

1 Answer

up vote 2 down vote accepted

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.

share|improve this answer
Thank you, that was exactly what I needed! – Jason Jun 22 '10 at 22:08
@Jason - thx for accepting an answer. – Romain Hippeau Jun 23 '10 at 1:34
if your using JPA/Hibernate over a derby DB do you have any links that outline the hibernate parameters to set to ensure that schema/tables are created automatically? – emeraldjava Sep 3 '10 at 8:33
@emeraldjava - Maybe you might want to post that as a question on this site ? – Romain Hippeau Sep 3 '10 at 12:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.