DataCleaner and Firebird

Compliancy

Firebird is a supported DataCleaner database.

Configuration

  • Register the  jaybird-full JDBC-driver 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="Firebird database example" />
 <property name="driverClass" value="org.firebirdsql.jdbc.FBDriver" />
 <property name="connectionString" value="jdbc:firebirdsql:127.0.0.1:/path/to/my/database.fdb" />
 <property name="username" value="username" />
 <property name="password" value="password" />
</bean>