try {
platformName = DBPlatformHelper.getDBPlatform(conn.getMetaData().getDatabaseProductName(), getSessionLog());
getLogin().setPlatformClassName(platformName);
} catch (EclipseLinkException classNotFound) {
if (platformName.indexOf("Oracle") != -1) {
getLogin().setPlatform(new OraclePlatform());
} else {
throw classNotFound;
}
}
}catch (SQLException ex){