<div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, Nov 6, 2012 at 4:58 AM, Tim Cutts <span dir="ltr"><<a href="mailto:tjrc@sanger.ac.uk" target="_blank">tjrc@sanger.ac.uk</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">
<div id=":r">But generally you don't want to do that, and instead you want to use the perl API to get at them:<br>
<br>
my $attachments = RT::Attachments->new(RT->SystemUser);<br>
$attachments->LimitByTicket(294774);<br>
$attachments->LimitNotEmpty;<br></div></blockquote></div><br>And if you *just* want Comments, say, you can do</div><div class="gmail_extra"><br></div><div class="gmail_extra"><div class="gmail_extra"><font face="courier new, monospace">    my $attachments = RT::Attachments->new(RT->SystemUser);</font></div>
<div class="gmail_extra"><font face="courier new, monospace">    $attachments->LimitByTicket(294774);</font></div><div class="gmail_extra"><font face="courier new, monospace">    $attachments->Limit(</font></div><div class="gmail_extra">
<font face="courier new, monospace">      ALIAS           => $attachments->TransactionAlias,</font></div><div class="gmail_extra"><font face="courier new, monospace">      FIELD           => 'Type',</font></div>
<div class="gmail_extra"><font face="courier new, monospace">      OPERATOR        => '=',</font></div><div class="gmail_extra"><font face="courier new, monospace">      VALUE           => 'Comment',</font></div>
<div class="gmail_extra"><font face="courier new, monospace">      ENTRYAGGREGATOR => 'OR',</font></div><div class="gmail_extra"><font face="courier new, monospace">      CASESENSITIVE   => 1</font></div><div class="gmail_extra">
<font face="courier new, monospace">    );</font></div><div class="gmail_extra"><font face="courier new, monospace"><br></font></div><div class="gmail_extra"><font face="courier new, monospace">    while (my $attachment = $attachments->Next)</font></div>
<div class="gmail_extra"><font face="courier new, monospace">    {</font></div><div><br></div><div>(If there's an easier way to do that, please let me know)</div><div><br></div>-- <br><a href="http://www.linkedin.com/in/paultomblin">http://www.linkedin.com/in/paultomblin</a><br>
<a href="http://careers.stackoverflow.com/ptomblin">http://careers.stackoverflow.com/ptomblin</a><br><br>
</div>