in reply to Flexible Update SQL
Look up "sql place holder". The query should really be written with placeholders similar to the following:
my $sql = "UPDATE table SET phone = ?, city = ?"
Peter (Guo) Pei
In Section
Seekers of Perl Wisdom
in reply to Flexible Update SQL
Look up "sql place holder". The query should really be written with placeholders similar to the following:
my $sql = "UPDATE table SET phone = ?, city = ?"