$result->execute(@$userid);

You declared an array @userid, not an arrayref, so you don't need to
dereference it.

$result->execute(@userid);

should do the trick.

--
Anthony Ettinger
Signature: http://chovy.dyndns.org/hcard.html

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to