Last modified 4 years ago
DataCleaner and Postgresql
Compliancy
Postgresql is a supported DataCleaner database.
Configuration
- Register the Postgresql 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="Postgresql database example" /> <property name="driverClass" value="org.postgresql.Driver" /> <property name="connectionString" value="jdbc:postgresql://localhost:5432/my_database" /> <property name="username" value="username" /> <property name="password" value="password" /> </bean>
