From: dion g. <dio...@us...> - 2004-08-01 11:54:17
|
diongillard 04/08/01 04:54:08 Modified: dbunit/xdocs properties.xml Log: Revamp props docs Revision Changes Path 1.8 +12 -14 maven-plugins/dbunit/xdocs/properties.xml Index: properties.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/dbunit/xdocs/properties.xml,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- properties.xml 25 Apr 2004 16:15:18 -0000 1.7 +++ properties.xml 1 Aug 2004 11:54:08 -0000 1.8 @@ -26,9 +26,7 @@ <td>maven.dbunit.driverClassName</td> <td>Yes</td> <td> - <p>Default value is - <code> - </code>.</p> + <p>The class name of the JDBC driver to be used. Default value is empty.</p> </td> </tr> <tr> @@ -37,7 +35,7 @@ <td> <p> Format for the import/delete functionality. Default is <code>xml</code>. Alternatively you - could specify <code>flat</code>. + could specify <code>flat or csv</code>. </p> </td> </tr> @@ -46,7 +44,12 @@ <td>Yes</td> <td> <p> - DbUnit operation type for import. Default is <code>INSERT</code> + DbUnit operation type for import. Default is <code>INSERT</code>. Other valid + values are: + <code> + UPDATE, INSERT, DELETE, DELETE_ALL, REFRESH, CLEAN_INSERT, + MSSQL_INSERT, MSSQL_REFRESH, MSSQL_CLEAN_INSERT + </code> </p> </td> </tr> @@ -54,9 +57,7 @@ <td>maven.dbunit.password</td> <td>Yes</td> <td> - <p>Default value is - <code> - </code>.</p> + <p>The password of the user connecting to the database. Default value is empty.</p> </td> </tr> <tr> @@ -71,18 +72,15 @@ <td>maven.dbunit.url</td> <td>Yes</td> <td> - <p>Default value is - <code> - </code>.</p> + <p>The JDBC URL for the database to access, e.g. <code>jdbc:db2:SAMPLE</code>. + Default value is empty.</p> </td> </tr> <tr> <td>maven.dbunit.user</td> <td>Yes</td> <td> - <p>Default value is - <code> - </code>.</p> + <p>The user name used to connect to the database. The default value is empty.</p> </td> </tr> </table> |