vote up 0 vote down star

How can I dump database schema to MySQL database with Java JDBC conncetor? I have my database schema in text file.

flag

1 Answer

vote up 1 vote down check

The schema file is usually a series of SQL command. You should be able to send all those commands - at least one by one - via JDBC to the database. If your text file has a non-sql format, you will have to 'convert it to SQL' first.

link|flag
Ok, what If I use mysqldump command from shell? How can I do that ? – newbie Oct 5 at 11:26
Pipe the mysqldump output to a new file (mysqldump ... > file.sql) and use it for input in your java application – Andreas_D Oct 5 at 11:59
Ok thanx, I did split my sql file to queries and I executed every query one by one, just like you suggested... – newbie Oct 5 at 12:11

Your Answer

Get an OpenID
or

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