On Wed, Feb 02, 2000 at 08:21:20PM +0200, Stas Bekman wrote:
> 

This thread has drifted way off topic, but anyway...

>   my $do_sql = 'UNLOCK TABLES ';
>   $self->{sth} = $self->{dbh}->prepare($do_sql);
>   $self->{sth}->execute();

I'd express all that as:

        $self->{dbh}->do("UNLOCK TABLES");

Tim.

Reply via email to