vote up 0 vote down star

I am starting using mysql with jdbc.

Class.forName("com.mysql.jdbc.Driver");
conn = DriverManager.getConnection("jdbc:mysql:///x", "x", "x");
stmt = conn.createStatement();
stmt.execute( "CREATE TABLE amigos" +
            "("+
            "id          int AUTO_INCREMENT          not null,"+
            "nombre      char(20)                    not null,"+
            "primary key(id)" +
            ")");

I have 3-4 tables to create and this doesn't look good.

Is there a way to run a .sql script from mysql jdbc?

Thanks for reading!

flag

1  
any particular reason why you need to write java code to run these create table statements? Are they dynamic in some way? – Vincent Ramdhanie Jun 25 at 14:21

3 Answers

vote up 1 vote down check

Ok. You can use this class here (posted on pastebin because of file length) in your project. But remember to keep the apache license info.

JDBC ScriptRunner

It's ripoff of the iBatis ScriptRunner with dependencies removed.

You can use it like this

Connection con = ....
ScriptRunner runner = new ScriptRunner(con, [booleanAutoCommit], [booleanStopOnerror]);
runner.runScript(new BufferedReader(new FileReader("test.sql")));

That's it!

link|flag
Great! I just repost your pastebin code to stay for ever at pastebin.com/d3db23d95 – Macarse Jun 25 at 16:27
vote up 2 vote down

There isn't really a way to do this.

You could either run the mysql command line client via Runtime.exec(String[]) and read this article when you decide for this option

Or try using the ScriptRunner (com.ibatis.common.jdbc.ScriptRunner) from ibatis. But it's a bit stupid to include a whole library just to run a script.

link|flag
Yes, it's true. Doesn't make sense to add a lib just to run a script :( I think it's quite strange that jdbc doesn't come with something like that. – Macarse Jun 25 at 14:41
vote up 1 vote down

Write code to:

  1. Read in a file containing a number of SQL statements.
  2. Run each SQL statement.
link|flag
If I do it like that I should parse the .sql file. I was expecting there was a jdbc's fuction which I couldn't find. – Macarse Jun 25 at 14:37

Your Answer

Get an OpenID
or

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