I'm looking at the quote method, the pod says not to be used with placeholders and bindvariables.
From the example shown I dont see how I could use it to dynamically build up a SQL query anyway. To better explain my problem. I have a form with fields foo bar and baz. In the perl code I have a sql query "select col1, col2, col3 from tab_name where foo=? and bar=? and baz=?". Is there a way I can remove parameters from the where clause, while still doing things safely, or do I need to learn a better way of dynamically generating a sql query based on input?