http://www.perlmonks.org?node_id=1038120


in reply to DBI order by clause and placeholders

Parameters passed in via placeholders are assumed to be string literals and are autoquoted. So the second example would translate to something like:

select * from mytable order by 'col_3'

That doesn't really make sense.

stephen