http://qs321.pair.com?node_id=617868


in reply to Oracle Placeholder Problem in my Perl Script

It looks like you are trying to use the &foo format for parameters from sqlplus. This will NOT work in perl.

As others have mentioned, use a ? as the placeholder, and pass the parameter in the $sth->execute() call.

Michael