in reply to Re: DBI Parameter Security
in thread DBI Parameter Security
As lhoward said, using placeholders is perfectly safe, because any data that the user enters will simply be passed to the database as a literal string.
This is similar to putting user data in a regex with \Q; /\Q$user_data/ is perfectly safe because all the metacharacters will be escaped.
|
|---|