in reply to SQL::Statement limit clause with placeholders

Most databases do not support placeholders in the limit clause (I believe MySQL, as always, is at least one exception to the rule). It is the same with the ORDER BY and GROUP BY clauses. Placeholders are for column values.

My guess is that DBD::CSV is sticking with the norm here.

  • Comment on Re: SQL::Statement limit clause with placeholders