}
if (!(connection instanceof SOSMySQLConnection)){
getLogger().warn("This Job only works with MySQL databases.");
return false;
}
SOSConnectionVersionLimiter limiter = new SOSConnectionVersionLimiter();
limiter.setExcludedThroughVersion(3,999);
for (int i=0; i<13; i++){
limiter.addExcludedVersion("4.0."+i);
}
limiter.check(connection, getLogger());
if (getJobProperties().getProperty("operations") != null) {
operations = getJobProperties().getProperty("operations").toString().split(",");
}
if (operations == null) {
operations = new String[3];