Examples of ZipBlob


Examples of com.acelet.lib.ZipBlob

        id = resultSet.getLong("id");
        name = resultSet.getString("name");
        if (name == null)
          name = "";

        job = new ZipBlob().getText(resultSet, "job");

        jobType = resultSet.getInt("jobType");

        triggerObject = resultSet.getString("triggerObject");
        triggerType = resultSet.getInt("triggerType");
View Full Code Here

Examples of com.acelet.lib.ZipBlob

        if (name == null)
          name = "";

        stamp = resultSet.getString("stamp");

        job = new ZipBlob().getText(resultSet, "job");

        jobType = resultSet.getInt("jobType");
        oneShot = resultSet.getInt("oneShot");

        realHost = resultSet.getString("realHost");
View Full Code Here

Examples of com.acelet.lib.ZipBlob

      insertStatement.setQueryTimeout(queryTimeout);
     
      insertStatement.setLong(++nn, chore.getId());
      insertStatement.setString(++nn, chore.name);

      new ZipBlob().setText(insertStatement, ++nn, chore.getJob());

      insertStatement.setInt(++nn, chore.getJobType());

      insertStatement.setString(++nn, chore.getTriggerObject());
      insertStatement.setInt(++nn, chore.getTriggerType());
View Full Code Here

Examples of com.acelet.lib.ZipBlob

      insertStatement.setLong(++nn, workingChore.getId0());
      insertStatement.setString(++nn, workingChore.name);
     
      insertStatement.setString(++nn, workingChore.getStamp());

      new ZipBlob().setText(insertStatement, ++nn, workingChore.getJob());

      insertStatement.setInt(++nn, workingChore.getJobType());
      insertStatement.setInt(++nn, workingChore.oneShot);
      insertStatement.setString(++nn, workingChore.realHost);
      insertStatement.setString(++nn, workingChore.club);
View Full Code Here

Examples of com.acelet.lib.ZipBlob

      updateStatement = connection.prepareStatement(updateSql);
      updateStatement.setQueryTimeout(queryTimeout);
     
      updateStatement.setString(++nn, chore.name);

      new ZipBlob().setText(updateStatement, ++nn, chore.getJob());

      updateStatement.setInt(++nn, chore.getJobType());
      updateStatement.setString(++nn, chore.getTriggerObject());
      updateStatement.setInt(++nn, chore.getTriggerType());
      updateStatement.setInt(++nn, chore.getDelay());
View Full Code Here

Examples of com.acelet.lib.ZipBlob

        id = resultSet.getLong("id");
        name = resultSet.getString("name");
        if (name == null)
          name = "";

        job = new ZipBlob().getText(resultSet, "job");

        jobType = resultSet.getInt("jobType");

        repeating = resultSet.getInt("repeating");
        startTime = resultSet.getLong("startTime");
View Full Code Here

Examples of com.acelet.lib.ZipBlob

        id0 = resultSet.getLong("id0");
        name = resultSet.getString("name");
        if (name == null)
          name = "";

        job = new ZipBlob().getText(resultSet, "job");

        jobType = resultSet.getInt("jobType");
        status = resultSet.getInt("status");
        oneShot = resultSet.getInt("oneShot");
View Full Code Here

Examples of com.acelet.lib.ZipBlob

      insertStatement.setQueryTimeout(queryTimeout);

      insertStatement.setLong(++nn, task.getId());
      insertStatement.setString(++nn, task.name);

      new ZipBlob().setText(insertStatement, ++nn, task.getJob());

      insertStatement.setInt(++nn, task.getJobType());
      insertStatement.setInt(++nn, task.getRepeating());
      insertStatement.setLong(++nn, task.getStartTime());
      insertStatement.setInt(++nn, task.getMinutelyPeriod());
View Full Code Here

Examples of com.acelet.lib.ZipBlob

      insertStatement.setQueryTimeout(queryTimeout);

      insertStatement.setLong(++nn, workingTask.getId0());
      insertStatement.setString(++nn, workingTask.name);

      new ZipBlob().setText(insertStatement, ++nn, workingTask.getJob());

      insertStatement.setInt(++nn, workingTask.getJobType());
      insertStatement.setInt(++nn, workingTask.oneShot);
      insertStatement.setString(++nn, workingTask.realHost);
      insertStatement.setString(++nn, workingTask.club);
View Full Code Here

Examples of com.acelet.lib.ZipBlob

      updateStatement = connection.prepareStatement(updateSql);
      updateStatement.setQueryTimeout(queryTimeout);

      updateStatement.setString(++nn, task.name);

      new ZipBlob().setText(updateStatement, ++nn, task.getJob());

      updateStatement.setInt(++nn, task.getJobType());
      updateStatement.setInt(++nn, task.getRepeating());
      updateStatement.setLong(++nn, task.getStartTime());
      updateStatement.setInt(++nn, task.getMinutelyPeriod());
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.