is there a way to generate the CREATE TABLE code from an existing table in a Derby database? Or a simple way to gather the necessary table information?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I don't have any experience in using derby but you could try to use JDBC API to gather database metadata |
|||||
|
|
You can try using the dblook tool to dump an Apache Derby database table into a sql file. |
|||
|
|
|
If you just want the CREATE-statement to recreate the table, this works for me:
But this does not help if you really want the CREATE-statement for some other purpose than creating a similar table. |
|||
|
|