in reply to Re: Reliability of quoting via DBI placeholders
in thread Reliability of quoting via DBI placeholders

But the DBI book hedges on this topic... it actually says that it uses a heuristic to determine quotability when using placeholders, which is why I did the following instead:
# As ubiquitous as hashes are in Perl, the DBI API does not # offer a way to commit hashes to disk. # @::order_data consists of the field names of my database # in order sub fiddle_with_my_data_to_get_it_to_work_with_the_DBI_API { my @output_data; for (@::order_data) { push @output_data, $dbh->quote ( defined($::uregister->{$_}) ? $::uregister->{$_} : $::profile{$_} ); } $::INSERT_TERM=join ',', @output_data; }

princepawn, but tye calls me "PrincePawn"