Package com.knowgate.hipermail

Examples of com.knowgate.hipermail.AdHocMailing


      if (DebugFile.trace) DebugFile.writeln("Statement.executeUpdate(DELETE FROM " + DB.k_adhoc_mailings_lookup + " WHERE " + DB.gu_owner + "='" + sWrkAreaGUID + "')");
      oStmt.executeUpdate("DELETE FROM " + DB.k_adhoc_mailings_lookup + " WHERE  " + DB.gu_owner + "='" + sWrkAreaGUID + "'");
      oStmt.close();
      DBSubset oMailings = new DBSubset(DB.k_adhoc_mailings, DB.gu_mailing, DB.gu_workarea+"=?", 1000);
      int iMailings = oMailings.load(oConn, new Object[]{sWrkAreaGUID});
      AdHocMailing oAdhc = new AdHocMailing();
      for (int m=0; m<iMailings; m++) {
        oAdhc.load(oConn, new Object[]{oMailings.getString(DB.gu_mailing,m)});
        oAdhc.delete(oConn);
      } // next
  } // fi

    if (DBBind.exists(oConn, DB.k_mime_msgs, "U")) {
      oStmt = oConn.createStatement();
View Full Code Here

TOP

Related Classes of com.knowgate.hipermail.AdHocMailing

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.