I'm using derby for development in eclipse. Is it possible to dump a table from MySQL and use it for derby in some way? I know that ddl & dml are different for both dbms but I'm looking for a way, other than dump/export, that would be appropriate.
|
There are two options I can find; if I understand your question correctly, I think at least one will cover what you are looking for. If your focus is the data (or a subset thereof) from a single table, use Here's an example from the MySQL forums:
If you want to import everything, Apache DdlUtils will allow the transfer of an entire schema from MySQL to Derby. This would not require the repeated table definition in Derby, as it would come across as part of the import/export process with DdlUtils. |
|||
|
|
|
Unless you need to automate the process, the "DBCopy Plugin for SQuirreL SQL Client" tool might work for you. There are probably other tools, but that's the one I know (however never used myself). If you do need to automate the process, and if you don't care so much about the DDL, then I would probably use CSV. |
|||
|
|