/** Removes all entries whose <code>column</code> has <code>value</code>. */
public void remove(Postgres9Connection con, String column, String value) throws DAOException {
try {
remove(con.getConnection(), column, value);
} catch (SQLException e) {
throw new DAOException(e);
}
}