DataCleaner and Derby

Compliancy

MySQL is a supported DataCleaner database.

Configuration

  • Register the derbyclient.jar driver file in the file menu of DataCleaner-GUI.
  • Edit the datacleaner-config.xml configuration file and insert this bean definition (replace the values with your own connection information):
<bean class="dk.eobjects.datacleaner.gui.model.NamedConnection">
 <property name="name" value="Derby database example" />
 <property name="driverClass" value="org.apache.derby.jdbc.ClientDriver" />
 <property name="connectionString" value="jdbc:derby://localhost:1527/databases/my_database" />
 <property name="username" value="username" />
 <property name="password" value="password" />
</bean>