> I grepped the source code for undef and
> only got back these lines.
> 
> app.pm:               $sth = undef;
> app.pm:       $sth = undef;
> app.pm:       local($/) = undef;
> app.pm:       return undef;
> app.pm:       return undef;
> app.pm:       return undef;
> app.pm:               $row = undef;
> app.pm:       return undef;

Try changing those:

    $sth = undef

to:

    $sth->finish();

Jonathan Paton



__________________________________________________
Do You Yahoo!?
Everything you'll ever need on one web page
from News and Sport to Email and Music Charts
http://uk.my.yahoo.com

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to