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

Feeling a bit embarrassed, but I cant figure out which builder to use in DBunit to import a sql script. I only find the XML dataset builder

File file = new File(TEST_DATA_FILE);
FlatXmlDataSetBuilder builder = new FlatXmlDataSetBuilder();
DatabaseOperation.INSERT.execute(connection, builder.build(file));

Was looking through the DbUnit jar to look for something called ala SqlDateSetBuilder or similar, but didnt find anything.

Is there also a way to make DB unit export dataset to SQL scripts instead of XML ?

in advance thanks for all help

share|improve this question

1 Answer

up vote 1 down vote accepted

Was looking through the DbUnit jar to look for something called ala SqlDateSetBuilder or similar, but didnt find anything.

There isn't one that I have come across. You will have to use FlatXMLDataSetBuilder.

Is there also a way to make DB unit export dataset to SQL scripts instead of XML ?

No.

share|improve this answer
I see, I see, anyway thanks for your answer :) – Thomas Vervik Jan 16 '12 at 9:52

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.