in reply to Re^2: Having trouble running query in ClearCase OLE interface
in thread Having trouble running query in ClearCase OLE interface

I would bet that COQuery->Apply returns an array, which you then assign to a standard perl array, @CheckedOutFiles.

Perl arrays don't have a method called "Count".

You probably want:

print scalar @CheckedOutFiles . " files are checked out: "


--chargrill
s**lil*; $*=join'',sort split q**; s;.*;grr; &&s+(.(.)).+$2$1+; $; = qq-$_-;s,.*,ahc,;$,.=chop for split q,,,reverse;print for($,,$;,$*,$/)

Replies are listed 'Best First'.
Re^4: Having trouble running query in ClearCase OLE interface
by Anonymous Monk on Nov 03, 2006 at 19:56 UTC
    That's an excellent idea.
    I'll give it a try.