What exactly means CFSCHEDULE action=DELETE ?

Ask a Question related to Macromedia ColdFusion, Design and Development.

  1. #1

    Default Re: What exactly means CFSCHEDULE action=DELETE ?

    I am having a similar problem. I have an email task that is scheduled to send a
    certain number of emails from a database, then delete the records. If there are
    no msgs left to be sent, I run the following:

    <cfschedule action="delete" task="SendMyEmails">

    then send a mail to myself saying that the action is complete.

    However, the scheduled task seems to be stuck on an endless loop. It is still
    sending the confirmation email. Is there a bug with CF 6.1 that would prevent
    it from deleting the task? Or do I need to call my host and have them remove
    it for me?

    Thanks

    jeremy@noble Guest

  2. Similar Questions and Discussions

    1. SWC,SWF Means
      What is the abbrevation of .SWC , .SWF formats. please any one give me reply
    2. cfschedule
      Hi, I'm new to CF. I have set up a task to run every 5 minutes - not programmatically, but in the CF Admin page. Now in a CF page, I'd like to...
    3. Need Cfschedule Help
      I have the exact same problem. I Just.... Cant... Get ...CFSchedule.... to.... work.... gasp! A solution would be really appreciated
    4. Select and delete unused symbols won't record in an action
      The selection and deletion of unused brushes, styles, and swatches from the palettes in a document record properly in an action. (For some reason the...
    5. Objects Created Using "Unite" Action Crash Program When Trying to Delete
      I'm running Illustrator 10.0.3 on a Mac running OS 10.3.3. When trying to delete an object that I created using the "Unite" action, the program...
  3. #2

    Default Re: What exactly means CFSCHEDULE action=DELETE ?

    I still don't know if this a bug or not, however to solve my problem I finally decided using a select query statement. Select only email records that haven't been sent.
    cfmcoder Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139