ResultSet rs = stmt.executeQuery(sql);
if (uniqueKeyword == null) {
// vendor does not support unique selection so filter results
return new UniqueStringEnumeration(rs);
}
return new StringEnumeration(rs);
} catch (SQLException sqle) {
throw new JDBCRepositoryException(sqle);
}