Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Found the answer <a href="http://jira.codehaus.org/browse/MDBUNIT-1" rel="nofollow">here</a></p> <p>If your data file is in flat format (FlatXmlDataSet), adding flat will perform the update. </p> <p>For example: This doesn't work:</p> <blockquote> <pre><code> &lt;plugin&gt; &lt;groupId&gt;org.codehaus.mojo&lt;/groupId&gt; &lt;artifactId&gt;dbunit-maven-plugin&lt;/artifactId&gt; ... &lt;executions&gt; &lt;execution&gt; &lt;phase&gt;test-compile&lt;/phase&gt; &lt;goals&gt; &lt;goal&gt;operation&lt;/goal&gt; &lt;/goals&gt; &lt;configuration&gt; &lt;type&gt;CLEAN_INSERT&lt;/type&gt; &lt;src&gt;src/main/resources/opc1.xml&lt;/src&gt; &lt;/configuration&gt; &lt;/execution&gt; &lt;/executions&gt; &lt;/plugin&gt; </code></pre> </blockquote> <p>But this works (at least it did for me):</p> <blockquote> <pre><code> &lt;plugin&gt; &lt;groupId&gt;org.codehaus.mojo&lt;/groupId&gt; &lt;artifactId&gt;dbunit-maven-plugin&lt;/artifactId&gt; &lt;version&gt;1.0-beta-3&lt;/version&gt; &lt;dependencies&gt; &lt;dependency&gt; &lt;groupId&gt;com.sybase&lt;/groupId&gt; &lt;artifactId&gt;jConnect&lt;/artifactId&gt; ... &lt;executions&gt; &lt;execution&gt; &lt;phase&gt;test-compile&lt;/phase&gt; &lt;goals&gt; &lt;goal&gt;operation&lt;/goal&gt; &lt;/goals&gt; &lt;configuration&gt; &lt;format&gt;flat&lt;/format&gt; &lt;type&gt;CLEAN_INSERT&lt;/type&gt; &lt;src&gt;src/main/resources/opc1.xml&lt;/src&gt; &lt;/configuration&gt; &lt;/execution&gt; &lt;/executions&gt; &lt;/plugin&gt; </code></pre> </blockquote>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload