Package sos.connection

Examples of sos.connection.SOSConnectionVersionLimiter


          }
      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];
View Full Code Here

TOP

Related Classes of sos.connection.SOSConnectionVersionLimiter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.