in reply to Understanding placeholders
One quick suggestion, you don't have to use DESCRIBE to retrieve the column names, you can pull the column names from your already executed statement handle like so:
my $column_names_aref = $sth->{NAME}; #or NAME_lc or NAME_ucThis way you are not dependant upon mysql specific syntax.
|
|---|