On Wed, 23 May 2001 16:02:00 +0200, [EMAIL PROTECTED] wrote:

>What I wanted is:
>
>  my $sth = $dbh->prepare(q{
>    BEGIN select vtr_id into :1 from t_vertraege
>      where vtr_nr='$vbb_ver_nr'; 
>    END;
>  });

You may turn this around as much as you like, but you're still trying to
do something for which placeholders were never intended. You want to use
a placeholder for a table name. Placeholders were only intended to
reference field (=column) values. Don't be surprised if anything else
doesn't work: no field names, no table names. That's not what it's for.
Only field values.

-- 
        Bart.

Reply via email to